allow omitted inexact in nearest integer functions
[libc-test] / src / math / lroundl.c
index 42b8479..0b933be 100644 (file)
@@ -31,7 +31,7 @@ int main(void)
                yi = lroundl(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 lroundl(%La)=%lld, want %s",
                                p->file, p->line, rstr(p->r), p->x, p->i, estr(p->e));
                        printf(" got %s\n", estr(e));