X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fcbrtf.c;h=9737fbb095fbb205afa7ab3cdb1723442d792f04;hb=75aab93ef75299e347be24f57223dc93f2af80a4;hp=1e178a8af2274e81f7e7683ec328c1c06cb506ff;hpb=f9d17902a35b6403b7c8354845e9f13f882c1c8e;p=libc-test diff --git a/src/math/cbrtf.c b/src/math/cbrtf.c index 1e178a8..9737fbb 100644 --- a/src/math/cbrtf.c +++ b/src/math/cbrtf.c @@ -3,8 +3,8 @@ #include "util.h" static struct f_f t[] = { - #include "sanity/cbrtf.h" + }; int main(void) @@ -20,14 +20,15 @@ int main(void) y = cbrtf(p->x); e = getexcept(); if (!checkexcept(e, p->e, p->r)) { - printf("%s cbrtf(%a)==%a except: want %s", rstr(p->r), p->x, p->y, estr(p->e)); + printf("%s:%d: bad fp exception: %s cbrtf(%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 cbrtf(%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 cbrtf(%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++; } }