X-Git-Url: http://nsz.repo.hu/git/?p=libc-test;a=blobdiff_plain;f=src%2Fmath%2Fatan2.c;h=a0b55ab468aae2ab6dab8deaabe85c4dd07cccfe;hp=ea09cc28b2434ce8ce0b76495f7a649d74697c51;hb=457b0dbfc1d72080f6ba9fe47cd712e0f090732a;hpb=8d3db42ce8924972e11a12b997f8d09fc012d2b7 diff --git a/src/math/atan2.c b/src/math/atan2.c index ea09cc2..a0b55ab 100644 --- a/src/math/atan2.c +++ b/src/math/atan2.c @@ -21,14 +21,15 @@ int main(void) y = atan2(p->x, p->x2); e = getexcept(); if (!checkexcept(e, p->e, p->r)) { - printf("%s atan2(%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 atan2(%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 atan2(%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 atan2(%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++; } }