allow omitted inexact in nearest integer functions
[libc-test] / src / math / llroundl.c
index 7110e00..de46e7e 100644 (file)
@@ -1,13 +1,15 @@
 #include <stdint.h>
 #include <stdio.h>
-#include "util.h"
+#include "mtest.h"
 
 static struct l_i t[] = {
 #if LDBL_MANT_DIG == 53
 #include "sanity/llround.h"
+#include "special/llround.h"
 
 #elif LDBL_MANT_DIG == 64
 #include "sanity/llroundl.h"
+#include "special/llroundl.h"
 
 #endif
 };
@@ -16,7 +18,6 @@ int main(void)
 {
        #pragma STDC FENV_ACCESS ON
        long long yi;
-       float d;
        int e, i, err = 0;
        struct l_i *p;
 
@@ -30,13 +31,13 @@ int main(void)
                yi = llroundl(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 llroundl(%La)=%lld, want %s",
                                p->file, p->line, rstr(p->r), p->x, p->i, estr(p->e));
                        printf(" got %s\n", estr(e));
                        err++;
                }
-               if (yi != p->i) {
+               if (!(p->e&INVALID) && yi != p->i) {
                        printf("%s:%d: %s llroundl(%La) want %lld got %lld\n",
                                p->file, p->line, rstr(p->r), p->x, p->i, yi);
                        err++;