X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-frexp.c;h=4ed24d2902a3c922374ebd2e94944aaaabf6c958;hb=52cbcffe0a8aa9e466fac57b4671d81cf1637c69;hp=912ba200c314461c4688ac192f8aa40ba4e10132;hpb=6136fd62a3342532f17ccfd5f24db97764978448;p=gnulib.git diff --git a/tests/test-frexp.c b/tests/test-frexp.c index 912ba200c..4ed24d290 100644 --- a/tests/test-frexp.c +++ b/tests/test-frexp.c @@ -1,10 +1,10 @@ /* Test of splitting a double into fraction and mantissa. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2011 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ /* Written by Bruno Haible , 2007. */ @@ -21,22 +20,20 @@ #include +#include "signature.h" +SIGNATURE_CHECK (frexp, double, (double, int *)); + #include -#include -#define ASSERT(expr) if (!(expr)) abort (); +#include "isnand-nolibm.h" +#include "minus-zero.h" +#include "nan.h" +#include "macros.h" -/* The Compaq (ex-DEC) C 6.4 compiler chokes on the expression 0.0 / 0.0. */ -#ifdef __DECC -static double -NaN () -{ - static double zero = 0.0; - return zero / zero; -} -#else -# define NaN() (0.0 / 0.0) -#endif +/* Avoid some warnings from "gcc -Wshadow". + This file doesn't use the exp() function. */ +#undef exp +#define exp exponent static double my_ldexp (double x, int d) @@ -62,9 +59,9 @@ main () { /* NaN. */ int exp = -9999; double mantissa; - x = NaN (); + x = NaNd (); mantissa = frexp (x, &exp); - ASSERT (mantissa != mantissa); + ASSERT (isnand (mantissa)); } { /* Positive infinity. */ @@ -90,15 +87,17 @@ main () mantissa = frexp (x, &exp); ASSERT (exp == 0); ASSERT (mantissa == x); + ASSERT (!signbit (mantissa)); } { /* Negative zero. */ int exp = -9999; double mantissa; - x = -0.0; + x = minus_zerod; mantissa = frexp (x, &exp); ASSERT (exp == 0); ASSERT (mantissa == x); + ASSERT (signbit (mantissa)); } for (i = 1, x = 1.0; i <= DBL_MAX_EXP; i++, x *= 2.0)