X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-truncf1.c;h=011d2c4b1037b8c99a683ebd8f63643eb15a63be;hb=23eecb48e39afd0d267d64d40ba6bf97aa865e13;hp=b5f48dd6ae5b1cdb74c02a67eb9fe72c9c2c8d44;hpb=fdb0fd9e820d721e6492b041ddc49d49b4c61e64;p=gnulib.git diff --git a/tests/test-truncf1.c b/tests/test-truncf1.c index b5f48dd6a..011d2c4b1 100644 --- a/tests/test-truncf1.c +++ b/tests/test-truncf1.c @@ -1,5 +1,5 @@ /* Test of rounding towards zero. - Copyright (C) 2007-2010 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 @@ -25,6 +25,7 @@ SIGNATURE_CHECK (truncf, float, (float)); #include "isnanf-nolibm.h" #include "minus-zero.h" +#include "infinity.h" #include "nan.h" #include "macros.h" @@ -55,8 +56,8 @@ main () ASSERT (truncf (-65536.0f) == -65536.0f); ASSERT (truncf (-2.341e31f) == -2.341e31f); /* Infinite numbers. */ - ASSERT (truncf (1.0f / 0.0f) == 1.0f / 0.0f); - ASSERT (truncf (-1.0f / 0.0f) == -1.0f / 0.0f); + ASSERT (truncf (Infinityf ()) == Infinityf ()); + ASSERT (truncf (- Infinityf ()) == - Infinityf ()); /* NaNs. */ ASSERT (isnanf (truncf (NaNf ())));