math: fenv status flag fixes
[libc-test] / src / math / fmal.c
index 1f67aa4..791d5d3 100644 (file)
@@ -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));