math: add some float f(float,int) and some float f(float,int*) tests
[libc-test] / src / math / lgammal.c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "util.h"
4
5 static struct l_li t[] = {
6 #if LDBL_MANT_DIG == 53
7 #include "sanity/lgamma.h"
8
9 #elif LDBL_MANT_DIG == 64
10 #include "sanity/lgammal.h"
11
12 #endif
13 };
14
15 int main(void)
16 {
17         int yi;
18         long double y;
19         float d;
20         int e, i, err = 0;
21         struct l_li *p;
22
23         for (i = 0; i < sizeof t/sizeof *t; i++) {
24                 p = t + i;
25                 setupfenv(p->r);
26                 y = lgammal(p->x);
27                 yi = signgam;
28                 e = getexcept();
29                 if (!checkexcept(e, p->e, p->r)) {
30                         printf("%s:%d: bad fp exception: %s lgammal(%La)=%La,%lld, want %s",
31                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, estr(p->e));
32                         printf(" got %s\n", estr(e));
33                         err++;
34                 }
35                 d = ulperrl(y, p->y, p->dy);
36                 if (!checkulp(d, p->r) || yi != p->i) {
37                         printf("%s:%d: %s lgammal(%La) want %La,%lld got %La,%d ulperr %.3f = %a + %a\n",
38                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, y, yi, d, d-p->dy, p->dy);
39                         err++;
40                 }
41         }
42         return !!err;
43 }