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