X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-roundf1.c;h=48c854035c6bc538b588474e2183ba8c9656c9e4;hb=23eecb48e39afd0d267d64d40ba6bf97aa865e13;hp=60e19465eb1fff45047ccf665e5e6fcf6f9014d3;hpb=f2bbde92e487b8446ff201767c430306450220be;p=gnulib.git diff --git a/tests/test-roundf1.c b/tests/test-roundf1.c index 60e19465e..48c854035 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-2013 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,30 +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) +#include "macros.h" int main () { /* Zero. */ ASSERT (roundf (0.0f) == 0.0f); - ASSERT (roundf (-0.0f) == 0.0f); + ASSERT (roundf (minus_zerof) == 0.0f); /* Positive numbers. */ ASSERT (roundf (0.3f) == 0.0f); ASSERT (roundf (0.5f) == 1.0f); @@ -73,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 ())));