gettimeofday: port recent C++ fix to Emacs
[gnulib.git] / tests / test-cbrt.c
index dae88ca..31bc01b 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of cbrt() function.
-   Copyright (C) 2010 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 (cbrt, double, (double));
 
+#include <float.h>
+
 #include "macros.h"
 
-volatile double x;
-double y;
+#define DOUBLE double
+#define L_(literal) literal
+#define MANT_DIG DBL_MANT_DIG
+#define CBRT cbrt
+#define RANDOM randomd
+#include "test-cbrt.h"
 
 int
 main ()
@@ -36,5 +42,7 @@ main ()
   y = cbrt (x);
   ASSERT (y >= 0.8434326653 && y <= 0.8434326654);
 
+  test_function ();
+
   return 0;
 }