changeset 16734:70ffdfa91f03

log10f tests: More tests. * modules/log10f-tests (Files): Add tests/test-log10.h, tests/minus-zero.h, tests/randomf.c. (Makefile.am): Add randomf.c to test_log10f_SOURCES. * tests/test-log10f.c: Include <float.h>, minus-zero.h, test-log10.h. (main): Invoke test_function.
author Bruno Haible <bruno@clisp.org>
date Sat, 31 Mar 2012 21:41:32 +0200
parents d9812d72970c
children 41de1e077de1
files ChangeLog modules/log10f-tests tests/test-log10f.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>
 
+	log10f tests: More tests.
+	* modules/log10f-tests (Files): Add tests/test-log10.h,
+	tests/minus-zero.h, tests/randomf.c.
+	(Makefile.am): Add randomf.c to test_log10f_SOURCES.
+	* tests/test-log10f.c: Include <float.h>, minus-zero.h, test-log10.h.
+	(main): Invoke test_function.
+
 	log10 tests: More tests.
 	* tests/test-log10.h: New file.
 	* modules/log10-tests (Files): Add tests/test-log10.h,
--- a/modules/log10f-tests
+++ b/modules/log10f-tests
@@ -1,7 +1,10 @@
 Files:
 tests/test-log10f.c
+tests/test-log10.h
+tests/minus-zero.h
 tests/signature.h
 tests/macros.h
+tests/randomf.c
 
 Depends-on:
 
@@ -10,4 +13,5 @@
 Makefile.am:
 TESTS += test-log10f
 check_PROGRAMS += test-log10f
+test_log10f_SOURCES = test-log10f.c randomf.c
 test_log10f_LDADD = $(LDADD) @LOG10F_LIBM@
--- a/tests/test-log10f.c
+++ b/tests/test-log10f.c
@@ -23,10 +23,19 @@
 #include "signature.h"
 SIGNATURE_CHECK (log10f, float, (float));
 
+#include <float.h>
+
+#include "minus-zero.h"
 #include "macros.h"
 
-volatile float x;
-float y;
+#define DOUBLE float
+#define HUGEVAL HUGE_VALF
+#define L_(literal) literal##f
+#define MANT_DIG FLT_MANT_DIG
+#define MINUS_ZERO minus_zerof
+#define LOG10 log10f
+#define RANDOM randomf
+#include "test-log10.h"
 
 int
 main ()
@@ -36,5 +45,7 @@
   y = log10f (x);
   ASSERT (y >= -0.2218488f && y <= -0.2218487f);
 
+  test_function ();
+
   return 0;
 }