• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "mtest.h"
4 
5 static struct d_d t[] = {
6 #include "crlibm/sinh.h"
7 #include "ucb/sinh.h"
8 #include "sanity/sinh.h"
9 #include "special/sinh.h"
10 
11 };
12 
main(void)13 int main(void)
14 {
15 	#pragma STDC FENV_ACCESS ON
16 	double y;
17 	float d;
18 	int e, i, err = 0;
19 	struct d_d *p;
20 
21 	for (i = 0; i < sizeof t/sizeof *t; i++) {
22 		p = t + i;
23 
24 		if (p->r < 0)
25 			continue;
26 		fesetround(p->r);
27 		feclearexcept(FE_ALL_EXCEPT);
28 		y = sinh(p->x);
29 		e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
30 
31 #ifndef __aarch64__
32 		if (!checkexcept(e, p->e, p->r)) {
33 			printf("%s:%d: bad fp exception: %s sinh(%a)=%a, want %s",
34 				p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
35 			printf(" got %s\n", estr(e));
36 			err++;
37 		}
38 #endif
39 		d = ulperr(y, p->y, p->dy);
40 		if (!checkulp(d, p->r)) {
41 			if (fabsf(d) < 2.0f || p->r != RN)
42 				printf("X ");
43 			else
44 				err++;
45 			printf("%s:%d: %s sinh(%a) want %a got %a ulperr %.3f = %a + %a\n",
46 				p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
47 		}
48 	}
49 	return !!err;
50 }
51