math: fix some invalid checks (remquo, lrint, lround, y0, y1, yn)
[libc-test] / src / math / y1.c
index a5e3b6a..4aaf032 100644 (file)
@@ -4,6 +4,7 @@
 
 static struct d_d t[] = {
 #include "sanity/y1.h"
+#include "special/y1.h"
 
 };
 
@@ -32,7 +33,7 @@ int main(void)
                        err++;
                }
                d = ulperr(y, p->y, p->dy);
-               if (!checkulp(d, p->r)) {
+               if ((!(p->x < 0) && !checkulp(d, p->r)) || (p->x < 0 && !isnan(y) && y != -inf)) {
                        printf("%s:%d: %s y1(%a) want %a got %a ulperr %.3f = %a + %a\n",
                                p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
                        err++;