X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-roundf1.c;h=8d5d9704156072fe9fbcfab5770f678031feedf8;hb=c9f0960c2cd1acf9c29b27860589698ea54fa4ec;hp=cbf3f9edb1085ad25cfe30ab7ed2e304d77c6dcf;hpb=2d4d7d9d00fe33b6f5291e00a30b6c1016775b74;p=gnulib.git diff --git a/tests/test-roundf1.c b/tests/test-roundf1.c index cbf3f9edb..8d5d97041 100644 --- a/tests/test-roundf1.c +++ b/tests/test-roundf1.c @@ -1,5 +1,5 @@ /* Test of rounding to nearest, breaking ties away from zero. - Copyright (C) 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 2007-2012 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 @@ -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 Ben Pfaff , 2007. Based heavily on Bruno Haible's test-truncf.c. */ @@ -22,34 +21,21 @@ #include -#include -#include +#include "signature.h" +SIGNATURE_CHECK (roundf, float, (float)); #include "isnanf-nolibm.h" +#include "minus-zero.h" +#include "infinity.h" #include "nan.h" - -#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.0f. - So we use -zero instead. */ -float zero = 0.0f; +#include "macros.h" int main () { /* Zero. */ ASSERT (roundf (0.0f) == 0.0f); - ASSERT (roundf (-zero) == 0.0f); + ASSERT (roundf (minus_zerof) == 0.0f); /* Positive numbers. */ ASSERT (roundf (0.3f) == 0.0f); ASSERT (roundf (0.5f) == 1.0f); @@ -77,8 +63,8 @@ main () ASSERT (roundf (-65536.01f) == -65536.0f); ASSERT (roundf (-2.341e31f) == -2.341e31f); /* Infinite numbers. */ - ASSERT (roundf (1.0 / 0.0f) == 1.0 / 0.0f); - ASSERT (roundf (-1.0 / 0.0f) == -1.0 / 0.0f); + ASSERT (roundf (Infinityf ()) == Infinityf ()); + ASSERT (roundf (- Infinityf ()) == - Infinityf ()); /* NaNs. */ ASSERT (isnanf (roundf (NaNf ())));