math: fix some invalid checks (remquo, lrint, lround, y0, y1, yn)
[libc-test] / src / math / lroundf.c
index 4a5eaa0..9852964 100644 (file)
@@ -4,6 +4,7 @@
 
 static struct f_i t[] = {
 #include "sanity/lroundf.h"
+#include "special/lroundf.h"
 
 };
 
@@ -30,7 +31,7 @@ int main(void)
                        printf(" got %s\n", estr(e));
                        err++;
                }
-               if (yi != p->i) {
+               if (!(p->e&INVALID) && yi != p->i) {
                        printf("%s:%d: %s lroundf(%a) want %lld got %lld\n",
                                p->file, p->line, rstr(p->r), p->x, p->i, yi);
                        err++;