math: print file:line in the error msg, fix nearbyint tests
[libc-test] / src / math / fdim.c
index 7ef0ab6..0857a49 100644 (file)
@@ -20,14 +20,15 @@ int main(void)
                y = fdim(p->x, p->x2);
                e = getexcept();
                if (!checkexcept(e, p->e, p->r)) {
-                       printf("%s fdim(%a,%a)==%a except: want %s", rstr(p->r), p->x, p->x2, p->y, estr(p->e));
+                       printf("%s:%d: bad fp exception: %s fdim(%a,%a)=%a, 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 = ulperr(y, p->y, p->dy);
                if (!checkulp(d, p->r)) {
-                       printf("%s fdim(%a,%a) want %a got %a ulperr %.3f = %a + %a\n",
-                               rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy);
+                       printf("%s:%d: %s fdim(%a,%a) want %a 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++;
                }
        }