math: add fenv pragma, relax the error check, simplify util.h
[libc-test] / src / math / floorl.c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "util.h"
4
5 static struct l_l t[] = {
6 #if LDBL_MANT_DIG == 53
7 #include "ucb/floor.h"
8 #include "sanity/floor.h"
9
10 #elif LDBL_MANT_DIG == 64
11 #include "sanity/floorl.h"
12
13 #endif
14 };
15
16 int main(void)
17 {
18         #pragma STDC FENV_ACCESS ON
19         long double y;
20         float d;
21         int e, i, err = 0;
22         struct l_l *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 = floorl(p->x);
32                 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
33
34                 if (!checkexcept(e, p->e, p->r)) {
35                         printf("%s:%d: bad fp exception: %s floorl(%La)=%La, want %s",
36                                 p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
37                         printf(" got %s\n", estr(e));
38                         err++;
39                 }
40                 d = ulperrl(y, p->y, p->dy);
41                 if (!checkulp(d, p->r)) {
42                         printf("%s:%d: %s floorl(%La) want %La got %La ulperr %.3f = %a + %a\n",
43                                 p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
44                         err++;
45                 }
46         }
47         return !!err;
48 }