maint: update copyright
[gnulib.git] / tests / test-log.c
index 67774b3..5f90d68 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of log() function.
-   Copyright (C) 2010-2012 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 (log, double, (double));
 
+#include <float.h>
+
+#include "minus-zero.h"
 #include "macros.h"
 
-volatile double x;
-double y;
+#define DOUBLE double
+#define HUGEVAL HUGE_VAL
+#define L_(literal) literal
+#define MANT_DIG DBL_MANT_DIG
+#define MINUS_ZERO minus_zerod
+#define LOG log
+#define RANDOM randomd
+#include "test-log.h"
 
 int
 main ()
@@ -36,5 +45,7 @@ main ()
   y = log (x);
   ASSERT (y >= -0.5108256238 && y <= -0.5108256237);
 
+  test_function ();
+
   return 0;
 }