math: add ilogb, fix f_fi tests
[libc-test] / src / math / lgammal_r.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/lgammal_r.h"
8
9 #elif LDBL_MANT_DIG == 64
10 #include "sanity/lgammal_r.h"
11
12 #endif
13 };
14
15 int main(void)
16 {
17         #pragma STDC FENV_ACCESS ON
18         int yi;
19         long double y;
20         float d;
21         int e, i, err = 0;
22         struct l_li *p;
23
24         for (i = 0; i < sizeof t/sizeof *t; i++) {
25                 p = t + i;
26
27                 if (p->r < 0)
28                         continue;
29                 fesetround(p->r);
30                 feclearexcept(FE_ALL_EXCEPT);
31                 y = lgammal_r(p->x, &yi);
32                 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
33
34                 if (!checkexcept(e, p->e, p->r)) {
35                         printf("%s:%d: bad fp exception: %s lgammal_r(%La)=%La,%lld, want %s",
36                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, estr(p->e));
37                         printf(" got %s\n", estr(e));
38                         err++;
39                 }
40                 d = ulperrl(y, p->y, p->dy);
41                 if (!checkulp(d, p->r) || yi != p->i) {
42                         printf("%s:%d: %s lgammal_r(%La) want %La,%lld got %La,%d ulperr %.3f = %a + %a\n",
43                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, y, yi, d, d-p->dy, p->dy);
44                         err++;
45                 }
46         }
47         return !!err;
48 }