math: in lgamma* only check signgam when it's specified
[libc-test] / src / math / lgammaf.c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "util.h"
4
5 static struct f_fi t[] = {
6 #include "sanity/lgammaf.h"
7 #include "special/lgammaf.h"
8
9 };
10
11 int main(void)
12 {
13         #pragma STDC FENV_ACCESS ON
14         int yi;
15         double y;
16         float d;
17         int e, i, err = 0;
18         struct f_fi *p;
19
20         for (i = 0; i < sizeof t/sizeof *t; i++) {
21                 p = t + i;
22
23                 if (p->r < 0)
24                         continue;
25                 fesetround(p->r);
26                 feclearexcept(FE_ALL_EXCEPT);
27                 y = lgammaf(p->x);
28                 yi = signgam;
29                 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
30
31                 if (!checkexcept(e, p->e, p->r)) {
32                         printf("%s:%d: bad fp exception: %s lgammaf(%a)=%a,%lld, want %s",
33                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, estr(p->e));
34                         printf(" got %s\n", estr(e));
35                         err++;
36                 }
37                 d = ulperrf(y, p->y, p->dy);
38                 if (!checkulp(d, p->r) || (!isnan(p->x) && p->x!=-inf && !(p->e&DIVBYZERO) && yi != p->i)) {
39                         printf("%s:%d: %s lgammaf(%a) want %a,%lld got %a,%d ulperr %.3f = %a + %a\n",
40                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, y, yi, d, d-p->dy, p->dy);
41                         err++;
42                 }
43         }
44         return !!err;
45 }