X-Git-Url: http://nsz.repo.hu/git/?p=libc-test;a=blobdiff_plain;f=src%2Fmath%2Fllroundl.c;h=de46e7e1cd9f0882634916d6b803f9aa48822be3;hp=a2cd6f063a0c429d0acac8152587147f61354869;hb=b55b931794bff9e88a3443daa8404c74f7f1d17c;hpb=b3580f11bf7b91afd597e6224c2f265d6d0b087f diff --git a/src/math/llroundl.c b/src/math/llroundl.c index a2cd6f0..de46e7e 100644 --- a/src/math/llroundl.c +++ b/src/math/llroundl.c @@ -1,6 +1,6 @@ #include #include -#include "util.h" +#include "mtest.h" static struct l_i t[] = { #if LDBL_MANT_DIG == 53 @@ -31,7 +31,7 @@ int main(void) yi = llroundl(p->x); e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW); - if (!checkexcept(e, p->e, p->r)) { + if (!checkexcept(e, p->e, p->r) && (e|INEXACT) != p->e) { printf("%s:%d: bad fp exception: %s llroundl(%La)=%lld, want %s", p->file, p->line, rstr(p->r), p->x, p->i, estr(p->e)); printf(" got %s\n", estr(e));