X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-ceill.c;h=8f83cf774ca4f11bbc6b54383e3a37d1575cc596;hb=fa1db0dd22768f09a507674a30beb5b8a87bb35f;hp=cac45b77f067d52568aa84f5564d643c7a8cdb80;hpb=581b1c58f176167b473c8e79ed7b3f1786adfd02;p=gnulib.git diff --git a/tests/test-ceill.c b/tests/test-ceill.c index cac45b77f..8f83cf774 100644 --- a/tests/test-ceill.c +++ b/tests/test-ceill.c @@ -1,5 +1,5 @@ /* Test of rounding towards positive infinity. - 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 @@ -28,6 +28,7 @@ SIGNATURE_CHECK (ceill, long double, (long double)); #include "fpucw.h" #include "isnanl-nolibm.h" #include "minus-zero.h" +#include "infinity.h" #include "nan.h" #include "macros.h" @@ -63,8 +64,8 @@ main () ASSERT (ceill (-65536.0L) == -65536.0L); ASSERT (ceill (-2.341e31L) == -2.341e31L); /* Infinite numbers. */ - ASSERT (ceill (1.0L / 0.0L) == 1.0L / 0.0L); - ASSERT (ceill (-1.0L / 0.0L) == -1.0L / 0.0L); + ASSERT (ceill (Infinityl ()) == Infinityl ()); + ASSERT (ceill (- Infinityl ()) == - Infinityl ()); /* NaNs. */ ASSERT (isnanl (ceill (NaNl ())));