X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fscalbn.c;h=9b664dc27bc6ddf0e60891612f1aeff947d05a4c;hb=1421f13d69c511693e685e6e406de523610223fd;hp=4d179852cb4364da537db44301223795dd6ec474;hpb=cfa23cc1bd01f5c44d7746b8b1839f84d5e1b6eb;p=libc-test diff --git a/src/math/scalbn.c b/src/math/scalbn.c index 4d17985..9b664dc 100644 --- a/src/math/scalbn.c +++ b/src/math/scalbn.c @@ -26,7 +26,7 @@ int main(void) y = scalbn(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 scalbn(%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));