X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-frexpl.c;h=93cfa14434f37ae2c0b386ec908c13e896d57ebb;hb=70f2c04b76c463b54adb0c1db6de2b2c5c40661c;hp=447c3b9a7a98dd89a411be78465e33dca21c144b;hpb=cdaeb6bb213d6042df46e0b3584718ede9f18511;p=gnulib.git diff --git a/tests/test-frexpl.c b/tests/test-frexpl.c index 447c3b9a7..93cfa1443 100644 --- a/tests/test-frexpl.c +++ b/tests/test-frexpl.c @@ -22,11 +22,31 @@ #include #include +#include #include #include "fpucw.h" - -#define ASSERT(expr) if (!(expr)) abort (); +#include "isnanl-nolibm.h" + +#define ASSERT(expr) \ + do \ + { \ + if (!(expr)) \ + { \ + fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ + abort (); \ + } \ + } \ + while (0) + +/* On MIPS IRIX machines, LDBL_MIN_EXP is -1021, but the smallest reliable + exponent for 'long double' is -964. For exponents below that, the + precision may be truncated to the precision used for 'double'. */ +#ifdef __sgi +# define MIN_NORMAL_EXP (LDBL_MIN_EXP + 57) +#else +# define MIN_NORMAL_EXP LDBL_MIN_EXP +#endif static long double my_ldexp (long double x, int d) @@ -52,7 +72,7 @@ main () long double mantissa; x = 0.0L / 0.0L; mantissa = frexpl (x, &exp); - ASSERT (mantissa != mantissa); + ASSERT (isnanl (mantissa)); } { /* Positive infinity. */ @@ -78,6 +98,7 @@ main () mantissa = frexpl (x, &exp); ASSERT (exp == 0); ASSERT (mantissa == x); + ASSERT (!signbit (mantissa)); } { /* Negative zero. */ @@ -87,6 +108,7 @@ main () mantissa = frexpl (x, &exp); ASSERT (exp == 0); ASSERT (mantissa == x); + ASSERT (signbit (mantissa)); } for (i = 1, x = 1.0L; i <= LDBL_MAX_EXP; i++, x *= 2.0L) @@ -96,7 +118,7 @@ main () ASSERT (exp == i); ASSERT (mantissa == 0.5L); } - for (i = 1, x = 1.0L; i >= LDBL_MIN_EXP; i--, x *= 0.5L) + for (i = 1, x = 1.0L; i >= MIN_NORMAL_EXP; i--, x *= 0.5L) { int exp = -9999; long double mantissa = frexpl (x, &exp); @@ -118,7 +140,7 @@ main () ASSERT (exp == i); ASSERT (mantissa == -0.5L); } - for (i = 1, x = -1.0L; i >= LDBL_MIN_EXP; i--, x *= 0.5L) + for (i = 1, x = -1.0L; i >= MIN_NORMAL_EXP; i--, x *= 0.5L) { int exp = -9999; long double mantissa = frexpl (x, &exp); @@ -140,7 +162,7 @@ main () ASSERT (exp == i); ASSERT (mantissa == 0.505L); } - for (i = 1, x = 1.01L; i >= LDBL_MIN_EXP; i--, x *= 0.5L) + for (i = 1, x = 1.01L; i >= MIN_NORMAL_EXP; i--, x *= 0.5L) { int exp = -9999; long double mantissa = frexpl (x, &exp); @@ -164,7 +186,7 @@ main () ASSERT (exp == i); ASSERT (mantissa == 0.866025L); } - for (i = 1, x = 1.73205L; i >= LDBL_MIN_EXP; i--, x *= 0.5L) + for (i = 1, x = 1.73205L; i >= MIN_NORMAL_EXP; i--, x *= 0.5L) { int exp = -9999; long double mantissa = frexpl (x, &exp);