X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fnexttoward.c;h=8436c695199524cf3771acc4011520051f3bf83b;hb=ff1a08c16ea49fa2bd3260a3b327b5dcaa5d13a6;hp=d56cfeac1f700782f4daa44d64d0d35c863a0f42;hpb=3feaa322fdec8f8a45ec19a260103f11a12891e3;p=libc-test diff --git a/src/math/nexttoward.c b/src/math/nexttoward.c index d56cfea..8436c69 100644 --- a/src/math/nexttoward.c +++ b/src/math/nexttoward.c @@ -1,6 +1,6 @@ #include #include -#include "util.h" +#include "mtest.h" // TODO: fix ldbl static struct ll_l t[] = { @@ -33,15 +33,15 @@ int main(void) y = nexttoward(p->x, p->x2); e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW); - if (!checkexcept(e, p->e, p->r)) { + if (!checkexceptall(e, p->e, p->r)) { printf("%s:%d: bad fp exception: %s nexttoward(%La,%La)=%La, want %s", p->file, p->line, rstr(p->r), p->x, p->x2, p->y, estr(p->e)); printf(" got %s\n", estr(e)); err++; } - d = ulperrl(y, p->y, p->dy); + d = ulperr(y, p->y, p->dy); if (!checkcr(y, p->y, p->r)) { - printf("%s:%d: %s nexttoward(%La,%La) want %La got %La ulperr %.3f = %a + %a\n", + printf("%s:%d: %s nexttoward(%La,%La) want %La got %a ulperr %.3f = %a + %a\n", p->file, p->line, rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy); err++; }