tests/test-strstr.c: Add another self-test.
[gnulib.git] / tests / test-trunc2.c
index f3238ff..b13433f 100644 (file)
@@ -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 <stdio.h>
 #include <stdlib.h>
 
-#include "isnan.h"
+#include "isnand-nolibm.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.  */