X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Ffmal.c;h=791d5d3b90d0e6ad434d89b035b37b89fffcecd5;hb=6abdab8bf1ccda7f28916222043bb498a1b9adf3;hp=ef350c84034f7f3dc90e3ac7b696e208cbf6412c;hpb=f3f0ff4782fc90bd0f3e48fd541ee431f76aaed1;p=libc-test diff --git a/src/math/fmal.c b/src/math/fmal.c index ef350c8..791d5d3 100644 --- a/src/math/fmal.c +++ b/src/math/fmal.c @@ -1,6 +1,6 @@ #include #include -#include "util.h" +#include "mtest.h" static struct lll_l t[] = { #if LDBL_MANT_DIG == 53 @@ -30,7 +30,12 @@ int main(void) y = fmal(p->x, p->x2, p->x3); e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW); - if (!checkexcept(e, p->e, p->r)) { + /* do not check inexact by default */ +#if defined CHECK_INEXACT || defined CHECK_INEXACT_OMISSION + if (!checkexceptall(e, p->e, p->r)) { +#else + if (!checkexceptall(e|INEXACT, p->e|INEXACT, p->r)) { +#endif printf("%s:%d: bad fp exception: %s fmal(%La,%La,%La)=%La, want %s", p->file, p->line, rstr(p->r), p->x, p->x2, p->x3, p->y, estr(p->e)); printf(" got %s\n", estr(e));