log10l tests: More tests.
authorBruno Haible <bruno@clisp.org>
Sat, 31 Mar 2012 20:02:19 +0000 (22:02 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 1 Apr 2012 14:37:07 +0000 (16:37 +0200)
* modules/log10l-tests (Files): Add tests/test-log10l.h,
tests/minus-zero.h, tests/randoml.c.
(Makefile.am): Add randoml.c to test_log10l_SOURCES.
* tests/test-log10l.c: Include <float.h>, minus-zero.h, test-log10l.h.
(main): Invoke test_function.

ChangeLog
modules/log10l-tests
tests/test-log10l.c

index 41fdb7d..45c4197 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2012-03-31  Bruno Haible  <bruno@clisp.org>
 
+       log10l tests: More tests.
+       * modules/log10l-tests (Files): Add tests/test-log10l.h,
+       tests/minus-zero.h, tests/randoml.c.
+       (Makefile.am): Add randoml.c to test_log10l_SOURCES.
+       * tests/test-log10l.c: Include <float.h>, minus-zero.h, test-log10l.h.
+       (main): Invoke test_function.
+
        log10f tests: More tests.
        * modules/log10f-tests (Files): Add tests/test-log10.h,
        tests/minus-zero.h, tests/randomf.c.
index ad61ed6..54a54c3 100644 (file)
@@ -1,7 +1,10 @@
 Files:
 tests/test-log10l.c
+tests/test-log10.h
+tests/minus-zero.h
 tests/signature.h
 tests/macros.h
+tests/randoml.c
 
 Depends-on:
 fpucw
@@ -11,4 +14,5 @@ configure.ac:
 Makefile.am:
 TESTS += test-log10l
 check_PROGRAMS += test-log10l
+test_log10l_SOURCES = test-log10l.c randoml.c
 test_log10l_LDADD = $(LDADD) @LOG10L_LIBM@
index 1b89b07..ffee3dd 100644 (file)
 #include "signature.h"
 SIGNATURE_CHECK (log10l, long double, (long double));
 
+#include <float.h>
+
+#include "minus-zero.h"
 #include "fpucw.h"
 #include "macros.h"
 
-volatile long double x;
-long double y;
+#define DOUBLE long double
+#define HUGEVAL HUGE_VALL
+#define MANT_DIG LDBL_MANT_DIG
+#define L_(literal) literal##L
+#define MINUS_ZERO minus_zerol
+#define LOG10 log10l
+#define RANDOM randoml
+#include "test-log10.h"
 
 int
 main ()
@@ -41,5 +50,7 @@ main ()
   y = log10l (x);
   ASSERT (y >= -0.2218487497L && y <= -0.2218487496L);
 
+  test_function ();
+
   return 0;
 }