X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flrintl.c;h=653b4b4496c32a78380134698ea9c0491bc56f0a;hb=4f18b8f0b3cf4a59aea5258adcdd32ba2a0b6741;hp=bb2756b67bcea8fa7496dcd7578eeb0201adf25c;hpb=b5bbc6ebaeaf4381ea2436a3b410dcf4980c8efd;p=libc-test diff --git a/src/math/lrintl.c b/src/math/lrintl.c index bb2756b..653b4b4 100644 --- a/src/math/lrintl.c +++ b/src/math/lrintl.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/lrint.h" +#include "special/lrint.h" #elif LDBL_MANT_DIG == 64 #include "sanity/lrintl.h" +#include "special/lrintl.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 lrintl(%La) want %lld got %d\n", + if (!(p->e&INVALID) && yi != p->i) { + printf("%s:%d: %s lrintl(%La) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++; }