math: fpclassify test
[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         #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(p->x);
32                 yi = signgam;
33                 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
34
35                 if (!checkexcept(e, p->e, p->r)) {
36                         printf("%s:%d: bad fp exception: %s lgammal(%La)=%La,%lld, want %s",
37                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, estr(p->e));
38                         printf(" got %s\n", estr(e));
39                         err++;
40                 }
41                 d = ulperrl(y, p->y, p->dy);
42                 if (!checkulp(d, p->r) || yi != p->i) {
43                         printf("%s:%d: %s lgammal(%La) want %La,%lld got %La,%d ulperr %.3f = %a + %a\n",
44                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, y, yi, d, d-p->dy, p->dy);
45                         err++;
46                 }
47         }
48         return !!err;
49 }