maint: update copyright
[gnulib.git] / tests / test-fabs.c
index c7da947..6c27a3c 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of fabs() function.
-   Copyright (C) 2010-2011 Free Software Foundation, Inc.
+   Copyright (C) 2010-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 "signature.h"
 SIGNATURE_CHECK (fabs, double, (double));
 
+#include <string.h>
+
 #include "macros.h"
+#include "minus-zero.h"
 
-volatile double x;
-double y;
+#define DOUBLE double
+#define L_(literal) literal
+#define MINUS_ZERO minus_zerod
+#define FABS fabs
+#define RANDOM randomd
+#include "test-fabs.h"
 
 int
 main ()
@@ -41,5 +48,7 @@ main ()
   y = fabs (x);
   ASSERT (y == 0.6);
 
+  test_function ();
+
   return 0;
 }