add an sscanf regression test
[libc-test] / src / math / nexttoward.c
index 1532127..8436c69 100644 (file)
@@ -1,13 +1,16 @@
 #include <stdint.h>
 #include <stdio.h>
-#include "util.h"
+#include "mtest.h"
 
+// TODO: fix ldbl
 static struct ll_l t[] = {
 #if LDBL_MANT_DIG == 53
 #include "sanity/nexttoward.h"
+#include "special/nexttoward.h"
 
 #elif LDBL_MANT_DIG == 64
 #include "sanity/nexttoward.h"
+#include "special/nexttoward.h"
 
 #endif
 };
@@ -15,7 +18,7 @@ static struct ll_l t[] = {
 int main(void)
 {
        #pragma STDC FENV_ACCESS ON
-       long double y;
+       double y;
        float d;
        int e, i, err = 0;
        struct ll_l *p;
@@ -30,15 +33,15 @@ int main(void)
                y = nexttoward(p->x, p->x2);
                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 nexttoward(%La,%La)=%La, want %s",
                                p->file, p->line, rstr(p->r), p->x, p->x2, p->y, estr(p->e));
                        printf(" got %s\n", estr(e));
                        err++;
                }
-               d = ulperrl(y, p->y, p->dy);
+               d = ulperr(y, p->y, p->dy);
                if (!checkcr(y, p->y, p->r)) {
-                       printf("%s:%d: %s nexttoward(%La,%La) want %La got %La ulperr %.3f = %a + %a\n",
+                       printf("%s:%d: %s nexttoward(%La,%La) want %La got %a ulperr %.3f = %a + %a\n",
                                p->file, p->line, rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy);
                        err++;
                }