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