X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-roundf1.c;h=8413e827b484a9fae5b7692bd53f9ea86ae1d624;hb=cf00d49188ce187174233c0a5e7bd018340a8aab;hp=2ccbe29faa9c6ded95bf2e83b6b5f81f8a4151e7;hpb=d60f3b0c6b0f93a601acd1cfd3923f94ca05abb0;p=gnulib.git diff --git a/tests/test-roundf1.c b/tests/test-roundf1.c index 2ccbe29fa..8413e827b 100644 --- a/tests/test-roundf1.c +++ b/tests/test-roundf1.c @@ -27,6 +27,7 @@ SIGNATURE_CHECK (roundf, float, (float)); #include "isnanf-nolibm.h" #include "minus-zero.h" +#include "infinity.h" #include "nan.h" #include "macros.h" @@ -63,8 +64,8 @@ main () ASSERT (roundf (-65536.01f) == -65536.0f); ASSERT (roundf (-2.341e31f) == -2.341e31f); /* Infinite numbers. */ - ASSERT (roundf (1.0 / 0.0f) == 1.0 / 0.0f); - ASSERT (roundf (-1.0 / 0.0f) == -1.0 / 0.0f); + ASSERT (roundf (Infinityf ()) == Infinityf ()); + ASSERT (roundf (- Infinityf ()) == - Infinityf ()); /* NaNs. */ ASSERT (isnanf (roundf (NaNf ())));