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