X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Froundf.c;h=78a5dae3e38e48409576de2fcd3ddab6b08fc16e;hb=9b2923eb8edf5d0872c9fdd3561f00dbf8480840;hp=c9a18ce20479323867935e1aafbdb13a2105d1bb;hpb=4282b03a8c212b0e38af1876364be5f332673ce6;p=libc-test diff --git a/src/math/roundf.c b/src/math/roundf.c index c9a18ce..78a5dae 100644 --- a/src/math/roundf.c +++ b/src/math/roundf.c @@ -20,14 +20,15 @@ int main(void) y = roundf(p->x); e = getexcept(); if (!checkexcept(e, p->e, p->r)) { - printf("%s roundf(%a)==%a except: want %s", rstr(p->r), p->x, p->y, estr(p->e)); + printf("%s:%d: bad fp exception: %s roundf(%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 roundf(%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 roundf(%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++; } }