X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fmodff.c;h=a2d95ac1f2d1aebf08eddb37e40618b1efb8a525;hb=4599c1f37e1b43841083cc0e21b3417c4232f90e;hp=e6ed290dc76c811f79aa0a1a2ddd7f9da744fef4;hpb=cb9f87af9a1f917facd1140603b24f1087729751;p=libc-test diff --git a/src/math/modff.c b/src/math/modff.c index e6ed290..a2d95ac 100644 --- a/src/math/modff.c +++ b/src/math/modff.c @@ -1,9 +1,10 @@ #include #include -#include "util.h" +#include "mtest.h" static struct f_ff t[] = { #include "sanity/modff.h" +#include "special/modff.h" }; int main(void) @@ -24,7 +25,8 @@ int main(void) y = modff(p->x, &yi); e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW); - if (!checkexcept(e, p->e, p->r)) { + /* TODO: fix inexact */ + if (!checkexceptall(e|INEXACT, p->e|INEXACT, p->r)) { printf("%s:%d: bad fp exception: %s modff(%a)=%a,%a, want %s", p->file, p->line, rstr(p->r), p->x, p->y, p->y2, estr(p->e)); printf(" got %s\n", estr(e)); @@ -32,7 +34,7 @@ int main(void) } d = ulperr(y, p->y, p->dy); di = ulperr(yi, p->y2, p->dy2); - if (!checkulp(d, p->r) || !checkulp(di, p->r)) { + if (!checkcr(y, p->y, p->r) || !checkcr(yi, p->y2, p->r)) { printf("%s:%d: %s modff(%a) want %a,%a got %a,%a, ulperr %.3f = %a + %a, %.3f = %a + %a\n", p->file, p->line, rstr(p->r), p->x, p->y, p->y2, y, yi, d, d-p->dy, p->dy, di, di-p->dy2, p->dy2); err++;