remainder* tests: More tests.
[gnulib.git] / tests / test-remainder.c
index 5869bb7..c43d606 100644 (file)
 #include "signature.h"
 SIGNATURE_CHECK (remainder, double, (double, double));
 
+#include <float.h>
+
 #include "macros.h"
 
-volatile double x;
-volatile double y;
-double z;
+#define DOUBLE double
+#define L_(literal) literal
+#define MANT_DIG DBL_MANT_DIG
+#define MAX_EXP DBL_MAX_EXP
+#define REMAINDER remainder
+#define RANDOM randomd
+#include "test-remainder.h"
 
 int
 main ()
@@ -38,5 +44,7 @@ main ()
   z = remainder (x, y);
   ASSERT (z >= -0.178870837 && z <= -0.178870835);
 
+  test_function ();
+
   return 0;
 }