X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-frexp.c;h=0cd08230bed925c422f12704c8b0848b306ffcc8;hb=c7cf9c5005c207ccc24581f0bddb48a5864d443c;hp=9e92667cba23a52b47c3c4322f0baec42831c129;hpb=0a56509612c0b43a3f05361ecfb73b8b39f8e66c;p=gnulib.git diff --git a/tests/test-frexp.c b/tests/test-frexp.c index 9e92667cb..0cd08230b 100644 --- a/tests/test-frexp.c +++ b/tests/test-frexp.c @@ -24,20 +24,30 @@ #include #include -#include "isnand.h" +#include "isnand-nolibm.h" #include "nan.h" +/* Avoid some warnings from "gcc -Wshadow". + This file doesn't use the exp() function. */ +#undef exp +#define exp exponent + #define ASSERT(expr) \ do \ { \ if (!(expr)) \ { \ fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ + fflush (stderr); \ abort (); \ } \ } \ while (0) +/* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0. + So we use -zero instead. */ +double zero = 0.0; + static double my_ldexp (double x, int d) { @@ -96,7 +106,7 @@ main () { /* Negative zero. */ int exp = -9999; double mantissa; - x = -0.0; + x = -zero; mantissa = frexp (x, &exp); ASSERT (exp == 0); ASSERT (mantissa == x);