X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fscalbnl.c;h=9bc7bf552674eee5597ed64ccbd04030f24970d6;hb=d5fe2f139f48684f2e0f99a3c95ce63581e24740;hp=fe26540442ad24dc9e29f19eb5088fa9681c1a75;hpb=75aab93ef75299e347be24f57223dc93f2af80a4;p=libc-test diff --git a/src/math/scalbnl.c b/src/math/scalbnl.c index fe26540..9bc7bf5 100644 --- a/src/math/scalbnl.c +++ b/src/math/scalbnl.c @@ -1,19 +1,22 @@ #include #include -#include "util.h" +#include "mtest.h" static struct li_l t[] = { #if LDBL_MANT_DIG == 53 #include "sanity/scalbn.h" +#include "special/scalbn.h" #elif LDBL_MANT_DIG == 64 #include "sanity/scalbnl.h" +#include "special/scalbnl.h" #endif }; int main(void) { + #pragma STDC FENV_ACCESS ON long double y; float d; int e, i, err = 0; @@ -21,17 +24,22 @@ int main(void) for (i = 0; i < sizeof t/sizeof *t; i++) { p = t + i; - setupfenv(p->r); + + if (p->r < 0) + continue; + fesetround(p->r); + feclearexcept(FE_ALL_EXCEPT); y = scalbnl(p->x, p->i); - e = getexcept(); - if (!checkexcept(e, p->e, p->r)) { + e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW); + + if (!checkexceptall(e, p->e, p->r)) { printf("%s:%d: bad fp exception: %s scalbnl(%La, %lld)=%La, 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 = ulperrl(y, p->y, p->dy); - if (!checkulp(d, p->r)) { + if (!checkcr(y, p->y, p->r)) { printf("%s:%d: %s scalbnl(%La, %lld) want %La got %La 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++;