math: add some float f(float,int) and some float f(float,int*) tests
[libc-test] / src / math / logl.c
index 0141042..c1a534f 100644 (file)
@@ -27,14 +27,15 @@ int main(void)
                y = logl(p->x);
                e = getexcept();
                if (!checkexcept(e, p->e, p->r)) {
-                       printf("%s logl(%La)==%La except: want %s", rstr(p->r), p->x, p->y, estr(p->e));
+                       printf("%s:%d: bad fp exception: %s logl(%La)=%La, want %s",
+                               p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
                        printf(" got %s\n", estr(e));
                        err++;
                }
                d = ulperrl(y, p->y, p->dy);
                if (!checkulp(d, p->r)) {
-                       printf("%s logl(%La) want %La got %La ulperr %.3f = %a + %a\n",
-                               rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
+                       printf("%s:%d: %s logl(%La) want %La got %La ulperr %.3f = %a + %a\n",
+                               p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
                        err++;
                }
        }