X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flogb.c;h=52fcbb027d1b125c40e705abf9dfbc3f23e124c5;hb=9b2923eb8edf5d0872c9fdd3561f00dbf8480840;hp=a66000d248f374b2e912d3323cf82392bc838068;hpb=f9d17902a35b6403b7c8354845e9f13f882c1c8e;p=libc-test diff --git a/src/math/logb.c b/src/math/logb.c index a66000d..52fcbb0 100644 --- a/src/math/logb.c +++ b/src/math/logb.c @@ -3,8 +3,8 @@ #include "util.h" static struct d_d t[] = { - #include "sanity/logb.h" + }; int main(void) @@ -20,14 +20,15 @@ int main(void) y = logb(p->x); e = getexcept(); if (!checkexcept(e, p->e, p->r)) { - printf("%s logb(%a)==%a except: want %s", rstr(p->r), p->x, p->y, estr(p->e)); + printf("%s:%d: bad fp exception: %s logb(%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 = ulperr(y, p->y, p->dy); if (!checkulp(d, p->r)) { - printf("%s logb(%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 logb(%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++; } }