From 0248e75ce939a386964b243089f3b8a49159715f Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 26 Feb 2012 14:26:44 +0100 Subject: [PATCH] trunc-ieee tests: More tests. * tests/test-trunc-ieee.c: Include isnand-nolibm.h, infinity.h, nan.h. (main): Add tests for [MX] shaded specification in POSIX. * modules/trunc-ieee-tests (Files): Add tests/infinity.h, tests/nan.h. (Depends-on): Add isnand-nolibm. --- ChangeLog | 6 ++++++ modules/trunc-ieee-tests | 3 +++ tests/test-trunc-ieee.c | 11 +++++++++++ 3 files changed, 20 insertions(+) diff --git a/ChangeLog b/ChangeLog index eb9f783ae..d1679b34a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2012-02-26 Bruno Haible + trunc-ieee tests: More tests. + * tests/test-trunc-ieee.c: Include isnand-nolibm.h, infinity.h, nan.h. + (main): Add tests for [MX] shaded specification in POSIX. + * modules/trunc-ieee-tests (Files): Add tests/infinity.h, tests/nan.h. + (Depends-on): Add isnand-nolibm. + truncf-ieee tests: More tests. * tests/test-truncf-ieee.c: Include isnanf-nolibm.h, infinity.h, nan.h. (main): Add tests for [MX] shaded specification in POSIX. diff --git a/modules/trunc-ieee-tests b/modules/trunc-ieee-tests index 80bafef88..3299a7bbf 100644 --- a/modules/trunc-ieee-tests +++ b/modules/trunc-ieee-tests @@ -1,9 +1,12 @@ Files: tests/test-trunc-ieee.c tests/minus-zero.h +tests/infinity.h +tests/nan.h tests/macros.h Depends-on: +isnand-nolibm float signbit diff --git a/tests/test-trunc-ieee.c b/tests/test-trunc-ieee.c index e40289fd4..b6b90c10f 100644 --- a/tests/test-trunc-ieee.c +++ b/tests/test-trunc-ieee.c @@ -18,7 +18,10 @@ #include +#include "isnand-nolibm.h" #include "minus-zero.h" +#include "infinity.h" +#include "nan.h" #include "macros.h" int @@ -39,5 +42,13 @@ main () ASSERT (!!signbit (trunc (-0.3)) == !!signbit (minus_zerod)); ASSERT (!!signbit (trunc (-0.7)) == !!signbit (minus_zerod)); + /* [MX] shaded specification in POSIX. */ + + /* NaN. */ + ASSERT (isnand (trunc (NaNd ()))); + /* Infinity. */ + ASSERT (trunc (Infinityd ()) == Infinityd ()); + ASSERT (trunc (- Infinityd ()) == - Infinityd ()); + return 0; } -- 2.11.0