f8a09e15519a44ff598d577f71c7a06948965600
[libc-test] / src / math / sincosf.c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "mtest.h"
4
5 static struct f_ff t[] = {
6 #include "sanity/sincosf.h"
7 #include "special/sincosf.h"
8 };
9
10 int main(void)
11 {
12         #pragma STDC FENV_ACCESS ON
13         float ysin, ycos;
14         float dsin, dcos;
15         int e, i, err = 0;
16         struct f_ff *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                 sincosf(p->x, &ysin, &ycos);
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 sincosf(%a)=%a,%a, want %s",
30                                 p->file, p->line, rstr(p->r), p->x, p->y, p->y2, estr(p->e));
31                         printf(" got %s\n", estr(e));
32                         err++;
33                 }
34                 dsin = ulperr(ysin, p->y, p->dy);
35                 dcos = ulperr(ycos, p->y2, p->dy2);
36                 if (!checkulp(dsin, p->r) || !checkulp(dcos, p->r)) {
37                         printf("%s:%d: %s sincosf(%a) want %a,%a got %a,%a, ulperr %.3f = %a + %a, %.3f = %a + %a\n",
38                                 p->file, p->line, rstr(p->r), p->x, p->y, p->y2, ysin, ycos,
39                                 dsin, dsin-p->dy, p->dy, dcos, dcos-p->dy2, p->dy2);
40                         err++;
41                 }
42         }
43         return !!err;
44 }