fenv: under/overflow may raise inexact too
[libc-test] / src / math / scalbnl.c
index 05ad3d9..9bc7bf5 100644 (file)
@@ -1,13 +1,15 @@
 #include <stdint.h>
 #include <stdio.h>
-#include "util.h"
+#include "mtest.h"
 
 static struct li_l t[] = {
 #if LDBL_MANT_DIG == 53
 #include "sanity/scalbn.h"
+#include "special/scalbn.h"
 
 #elif LDBL_MANT_DIG == 64
 #include "sanity/scalbnl.h"
+#include "special/scalbnl.h"
 
 #endif
 };
@@ -30,14 +32,14 @@ int main(void)
                y = scalbnl(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 scalbnl(%La, %lld)=%La, want %s",
                                p->file, p->line, rstr(p->r), p->x, p->i, p->y, estr(p->e));
                        printf(" got %s\n", estr(e));
                        err++;
                }
                d = ulperrl(y, p->y, p->dy);
-               if (!checkulp(d, p->r)) {
+               if (!checkcr(y, p->y, p->r)) {
                        printf("%s:%d: %s scalbnl(%La, %lld) want %La got %La ulperr %.3f = %a + %a\n",
                                p->file, p->line, rstr(p->r), p->x, p->i, p->y, y, d, d-p->dy, p->dy);
                        err++;