math: add special case test vectors
[libc-test] / src / math / lgamma_r.c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "util.h"
4
5 static struct d_di t[] = {
6 #include "sanity/lgamma_r.h"
7 #include "special/lgamma_r.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 d_di *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 = lgamma_r(p->x, &yi);
28                 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
29
30                 if (!checkexcept(e, p->e, p->r)) {
31                         printf("%s:%d: bad fp exception: %s lgamma_r(%a)=%a,%lld, want %s",
32                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, estr(p->e));
33                         printf(" got %s\n", estr(e));
34                         err++;
35                 }
36                 d = ulperr(y, p->y, p->dy);
37                 if (!checkulp(d, p->r) || yi != p->i) {
38                         printf("%s:%d: %s lgamma_r(%a) want %a,%lld got %a,%d ulperr %.3f = %a + %a\n",
39                                 p->file, p->line, rstr(p->r), p->x, p->y, p->i, y, yi, d, d-p->dy, p->dy);
40                         err++;
41                 }
42         }
43         return !!err;
44 }