changeset 16735:41de1e077de1

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.
author Bruno Haible <bruno@clisp.org>
date Sat, 31 Mar 2012 22:02:19 +0200
parents 70ffdfa91f03
children 747e0285fa98
files ChangeLog modules/log10l-tests tests/test-log10l.c
diffstat 3 files changed, 24 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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.
--- a/modules/log10l-tests
+++ b/modules/log10l-tests
@@ -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 @@
 Makefile.am:
 TESTS += test-log10l
 check_PROGRAMS += test-log10l
+test_log10l_SOURCES = test-log10l.c randoml.c
 test_log10l_LDADD = $(LDADD) @LOG10L_LIBM@
--- a/tests/test-log10l.c
+++ b/tests/test-log10l.c
@@ -23,11 +23,20 @@
 #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 @@
   y = log10l (x);
   ASSERT (y >= -0.2218487497L && y <= -0.2218487496L);
 
+  test_function ();
+
   return 0;
 }