X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fllroundf.c;h=0a61cf96730a10663dc39668ab6da076fde80dd4;hb=e81f47f6663602eaae2911c62d2b28298815c72f;hp=fcb5340108c95aa6f3300656af6de9cfbbfa87c4;hpb=b5bbc6ebaeaf4381ea2436a3b410dcf4980c8efd;p=libc-test diff --git a/src/math/llroundf.c b/src/math/llroundf.c index fcb5340..0a61cf9 100644 --- a/src/math/llroundf.c +++ b/src/math/llroundf.c @@ -1,17 +1,17 @@ #include #include -#include "util.h" +#include "mtest.h" static struct f_i t[] = { #include "sanity/llroundf.h" +#include "special/llroundf.h" }; int main(void) { #pragma STDC FENV_ACCESS ON - int yi; - float d; + long long yi; int e, i, err = 0; struct f_i *p; @@ -31,8 +31,8 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - if (yi != p->i) { - printf("%s:%d: %s llroundf(%a) want %lld got %d\n", + if (!(p->e&INVALID) && yi != p->i) { + printf("%s:%d: %s llroundf(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++; }