X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-frexp.c;h=a7ec639df6f32d9f8218717e77025baa1dbc0b37;hb=09001dfb3ec39d237f8e248ff347cf1be3e6f0c1;hp=d5ab7e502e4a0c6c505cdd3f76f0daad126f3cb6;hpb=b2e2010c7c902235b5efb5bd3c6529f61b093aa4;p=gnulib.git diff --git a/tests/test-frexp.c b/tests/test-frexp.c index d5ab7e502..a7ec639df 100644 --- a/tests/test-frexp.c +++ b/tests/test-frexp.c @@ -1,5 +1,5 @@ /* Test of splitting a double into fraction and mantissa. - Copyright (C) 2007-2010 Free Software Foundation, Inc. + Copyright (C) 2007-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -26,6 +26,8 @@ SIGNATURE_CHECK (frexp, double, (double, int *)); #include #include "isnand-nolibm.h" +#include "minus-zero.h" +#include "infinity.h" #include "nan.h" #include "macros.h" @@ -34,10 +36,6 @@ SIGNATURE_CHECK (frexp, double, (double, int *)); #undef exp #define exp exponent -/* 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) { @@ -70,7 +68,7 @@ main () { /* Positive infinity. */ int exp = -9999; double mantissa; - x = 1.0 / 0.0; + x = Infinityd (); mantissa = frexp (x, &exp); ASSERT (mantissa == x); } @@ -78,7 +76,7 @@ main () { /* Negative infinity. */ int exp = -9999; double mantissa; - x = -1.0 / 0.0; + x = - Infinityd (); mantissa = frexp (x, &exp); ASSERT (mantissa == x); } @@ -96,7 +94,7 @@ main () { /* Negative zero. */ int exp = -9999; double mantissa; - x = -zero; + x = minus_zerod; mantissa = frexp (x, &exp); ASSERT (exp == 0); ASSERT (mantissa == x);