X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flroundf.c;h=9852964da360784426d719c02165980aba06813f;hb=7fd3b84625cfa955207526eda74d9261c5324549;hp=85902891aa5a5ce563a813bb808f6bd4e6731cf9;hpb=b5bbc6ebaeaf4381ea2436a3b410dcf4980c8efd;p=libc-test diff --git a/src/math/lroundf.c b/src/math/lroundf.c index 8590289..9852964 100644 --- a/src/math/lroundf.c +++ b/src/math/lroundf.c @@ -4,14 +4,14 @@ static struct f_i t[] = { #include "sanity/lroundf.h" +#include "special/lroundf.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 lroundf(%a) want %lld got %d\n", + if (!(p->e&INVALID) && yi != p->i) { + printf("%s:%d: %s lroundf(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++; }