fix malloc-brk-fail
[libc-test.git] / src / math / tanhl.c
blob4288836e39b43493c1ddf67623ddc6f34f5bfa48
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "mtest.h"
5 static struct l_l t[] = {
6 #if LDBL_MANT_DIG == 53
7 #include "ucb/tanh.h"
8 #include "sanity/tanh.h"
9 #include "special/tanh.h"
11 #elif LDBL_MANT_DIG == 64
12 #include "sanity/tanhl.h"
13 #include "special/tanhl.h"
15 #endif
18 int main(void)
20 #pragma STDC FENV_ACCESS ON
21 long double y;
22 float d;
23 int e, i, err = 0;
24 struct l_l *p;
26 for (i = 0; i < sizeof t/sizeof *t; i++) {
27 p = t + i;
29 if (p->r < 0)
30 continue;
31 fesetround(p->r);
32 feclearexcept(FE_ALL_EXCEPT);
33 y = tanhl(p->x);
34 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
36 if (!checkexcept(e, p->e, p->r)) {
37 printf("%s:%d: bad fp exception: %s tanhl(%La)=%La, want %s",
38 p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
39 printf(" got %s\n", estr(e));
40 err++;
42 d = ulperrl(y, p->y, p->dy);
43 if (!checkulp(d, p->r)) {
44 printf("%s:%d: %s tanhl(%La) want %La got %La ulperr %.3f = %a + %a\n",
45 p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
46 err++;
49 return !!err;