X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fldexpf.c;h=135e957e0833e3ea5af4563d1b961549cf0d6ec8;hb=refs%2Fheads%2Fmaster;hp=01b037cc30936851a98c320127f27b7bd2c7d15c;hpb=d22f4f43182fe1cc70b343b6a52cb8e3a54d1f44;p=libc-test diff --git a/src/math/ldexpf.c b/src/math/ldexpf.c index 01b037c..135e957 100644 --- a/src/math/ldexpf.c +++ b/src/math/ldexpf.c @@ -1,16 +1,17 @@ #include #include -#include "util.h" +#include "mtest.h" static struct fi_f t[] = { #include "sanity/ldexpf.h" +#include "special/ldexpf.h" }; int main(void) { #pragma STDC FENV_ACCESS ON - double y; + float y; float d; int e, i, err = 0; struct fi_f *p; @@ -25,14 +26,14 @@ int main(void) y = ldexpf(p->x, p->i); 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 ldexpf(%a, %lld)=%a, want %s", p->file, p->line, rstr(p->r), p->x, p->i, p->y, estr(p->e)); printf(" got %s\n", estr(e)); err++; } d = ulperrf(y, p->y, p->dy); - if (!checkulp(d, p->r)) { + if (!checkcr(y, p->y, p->r)) { printf("%s:%d: %s ldexpf(%a, %lld) want %a got %a, ulperr %.3f = %a + %a\n", p->file, p->line, rstr(p->r), p->x, p->i, p->y, y, d, d-p->dy, p->dy); err++;