X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fllroundl.c;h=5025b160673e097d4c23eb038ba9e6937deffb96;hb=2113a3ed8217775797dd9a82aa420c10ef1712d5;hp=6468208e635c9c7a06030f9250a37ad70508e608;hpb=b5bbc6ebaeaf4381ea2436a3b410dcf4980c8efd;p=libc-test diff --git a/src/math/llroundl.c b/src/math/llroundl.c index 6468208..5025b16 100644 --- a/src/math/llroundl.c +++ b/src/math/llroundl.c @@ -1,13 +1,15 @@ #include #include -#include "util.h" +#include "mtest.h" static struct l_i t[] = { #if LDBL_MANT_DIG == 53 #include "sanity/llround.h" +#include "special/llround.h" #elif LDBL_MANT_DIG == 64 #include "sanity/llroundl.h" +#include "special/llroundl.h" #endif }; @@ -15,8 +17,7 @@ static struct l_i t[] = { int main(void) { #pragma STDC FENV_ACCESS ON - int yi; - float d; + long long yi; int e, i, err = 0; struct l_i *p; @@ -36,8 +37,8 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - if (yi != p->i) { - printf("%s:%d: %s llroundl(%La) want %lld got %d\n", + if (!(p->e&INVALID) && yi != p->i) { + printf("%s:%d: %s llroundl(%La) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++; }