X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-trunc2.c;h=adf4e5496085756748c36470b437fd460bb67d9f;hb=6d03958a046c6783210c538dd9f656553434a804;hp=f3238ffe2ca9efab1af8411d5c6d4a70dcb6338f;hpb=c532b2a8ef48d317a1bc348584c00880ea7c5ba6;p=gnulib.git diff --git a/tests/test-trunc2.c b/tests/test-trunc2.c index f3238ffe2..adf4e5496 100644 --- a/tests/test-trunc2.c +++ b/tests/test-trunc2.c @@ -1,5 +1,5 @@ /* Test of rounding towards zero. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2008 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 @@ -26,7 +26,7 @@ #include #include -#include "isnan.h" +#include "isnand.h" #define ASSERT(expr) \ do \ @@ -34,6 +34,7 @@ if (!(expr)) \ { \ fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ + fflush (stderr); \ abort (); \ } \ } \ @@ -103,7 +104,7 @@ trunc_reference (DOUBLE x) static int equal (DOUBLE x, DOUBLE y) { - return (isnan (x) ? isnan (y) : x == y); + return (isnand (x) ? isnand (y) : x == y); } /* Test whether the result for a given argument is correct. */