X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fj0f.c;h=94a213ce68d320bfb243b3e9fbf687850456195d;hb=9b2923eb8edf5d0872c9fdd3561f00dbf8480840;hp=8ba059fdd21561f1c50cb426de3f3a67b73e8dd6;hpb=f9d17902a35b6403b7c8354845e9f13f882c1c8e;p=libc-test diff --git a/src/math/j0f.c b/src/math/j0f.c index 8ba059f..94a213c 100644 --- a/src/math/j0f.c +++ b/src/math/j0f.c @@ -3,8 +3,8 @@ #include "util.h" static struct f_f t[] = { - #include "sanity/j0f.h" + }; int main(void) @@ -20,14 +20,15 @@ int main(void) y = j0f(p->x); e = getexcept(); if (!checkexcept(e, p->e, p->r)) { - printf("%s j0f(%a)==%a except: want %s", rstr(p->r), p->x, p->y, estr(p->e)); + printf("%s:%d: bad fp exception: %s j0f(%a)=%a, want %s", + p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e)); printf(" got %s\n", estr(e)); err++; } d = ulperrf(y, p->y, p->dy); if (!checkulp(d, p->r)) { - printf("%s j0f(%a) want %a got %a ulperr %.3f = %a + %a\n", - rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy); + printf("%s:%d: %s j0f(%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++; } }