fix malloc-brk-fail
[libc-test.git] / src / math / sqrt.c
blob403e2dc79f574c4fa9c105a9003d60443f8dd3f5
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "mtest.h"
5 static struct d_d t[] = {
6 #include "ucb/sqrt.h"
7 #include "sanity/sqrt.h"
8 #include "special/sqrt.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 d_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 = sqrt(p->x);
28 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
30 if (!checkexceptall(e, p->e, p->r)) {
31 printf("%s:%d: bad fp exception: %s sqrt(%a)=%a, want %s",
32 p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
33 printf(" got %s\n", estr(e));
34 err++;
36 d = ulperr(y, p->y, p->dy);
37 if (!checkcr(y, p->y, p->r)) {
38 printf("%s:%d: %s sqrt(%a) want %a got %a ulperr %.3f = %a + %a\n",
39 p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
40 err++;
43 return !!err;