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