install-reloc: Support multi-binary installation.
[gnulib.git] / tests / test-fabsf.c
index d08625e..e9b7ccd 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of fabsf() function.
-   Copyright (C) 2010-2012 Free Software Foundation, Inc.
+   Copyright (C) 2010-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
 #include "signature.h"
 SIGNATURE_CHECK (fabsf, float, (float));
 
+#include <string.h>
+
 #include "macros.h"
+#include "minus-zero.h"
 
-volatile float x;
-float y;
+#define DOUBLE float
+#define L_(literal) literal##f
+#define MINUS_ZERO minus_zerof
+#define FABS fabsf
+#define RANDOM randomf
+#include "test-fabs.h"
 
 int
 main ()
@@ -41,5 +48,7 @@ main ()
   y = fabsf (x);
   ASSERT (y == 0.6f);
 
+  test_function ();
+
   return 0;
 }