maint: update copyright
[gnulib.git] / tests / test-frexpf-ieee.c
index d8e3f73..ae85b80 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of splitting a double into fraction and mantissa.
-   Copyright (C) 2012 Free Software Foundation, Inc.
+   Copyright (C) 2012-2014 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
 #include "nan.h"
 #include "macros.h"
 
+#undef INFINITY
+#undef NAN
+
+#define DOUBLE float
+#define ISNAN isnanf
+#define INFINITY Infinityf ()
+#define NAN NaNf ()
+#define L_(literal) literal##f
+#define MINUS_ZERO minus_zerof
+#define FREXP frexpf
+#include "test-frexp-ieee.h"
+
 int
 main ()
 {
-  /* [MX] shaded specification in POSIX.  */
-
-  /* NaN.  */
-  {
-    int exp = -9999;
-    float mantissa;
-    mantissa = frexpf (NaNf (), &exp);
-    ASSERT (isnanf (mantissa));
-  }
-
-  /* Signed zero.  */
-  {
-    int exp = -9999;
-    float mantissa;
-    mantissa = frexpf (0.0f, &exp);
-    ASSERT (mantissa == 0.0f);
-    ASSERT (!signbit (mantissa));
-    ASSERT (exp == 0);
-  }
-  {
-    int exp = -9999;
-    float mantissa;
-    mantissa = frexpf (minus_zerof, &exp);
-    ASSERT (mantissa == 0.0f);
-    ASSERT (!!signbit (mantissa) == !!signbit (minus_zerof));
-    ASSERT (exp == 0);
-  }
-
-  /* Infinity.  */
-  {
-    int exp = -9999;
-    float mantissa;
-    mantissa = frexpf (Infinityf (), &exp);
-    ASSERT (mantissa == Infinityf ());
-  }
+  test_function ();
 
   return 0;
 }