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