fix malloc-brk-fail
[libc-test.git] / src / math / powf.c
blob4778c2f73644a86b6707c7b81218aead16b7f51a
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "mtest.h"
5 static struct ff_f t[] = {
6 #include "ucb/powf.h"
7 #include "sanity/powf.h"
8 #include "special/powf.h"
12 int main(void)
14 #pragma STDC FENV_ACCESS ON
15 float y;
16 float d;
17 int e, i, err = 0;
18 struct ff_f *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 = powf(p->x, p->x2);
28 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
30 if (!checkexcept(e, p->e, p->r)) {
31 if (fabsf(y) < 0x1p-126f && (e|INEXACT) == (INEXACT|UNDERFLOW))
32 printf("X ");
33 else
34 err++;
35 printf("%s:%d: bad fp exception: %s powf(%a,%a)=%a, want %s",
36 p->file, p->line, rstr(p->r), p->x, p->x2, p->y, estr(p->e));
37 printf(" got %s\n", estr(e));
39 d = ulperrf(y, p->y, p->dy);
40 if (!checkulp(d, p->r)) {
41 printf("%s:%d: %s powf(%a,%a) want %a got %a ulperr %.3f = %a + %a\n",
42 p->file, p->line, rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy);
43 err++;
46 return !!err;