X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flrint.c;h=84c410e8ca4307bcdfbd72381aa4f7387f7ce8ba;hb=978759d6ea01cb406c634912a2e876aa8475955e;hp=f496954b50060ddb5c57f34a0bc01f8a0d14c126;hpb=e084227a3608bc38230b88ea03e7b0f0804dd3ad;p=libc-test diff --git a/src/math/lrint.c b/src/math/lrint.c index f496954..84c410e 100644 --- a/src/math/lrint.c +++ b/src/math/lrint.c @@ -1,9 +1,10 @@ #include #include -#include "util.h" +#include "mtest.h" static struct d_i t[] = { #include "sanity/lrint.h" +#include "special/lrint.h" }; @@ -11,7 +12,6 @@ int main(void) { #pragma STDC FENV_ACCESS ON long long yi; - float d; int e, i, err = 0; struct d_i *p; @@ -31,7 +31,7 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - if (yi != p->i) { + 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++;