From 1cf571bb5ce42ffa1a95361d32414119a7ac6eba Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 31 Mar 2012 22:02:19 +0200 Subject: [PATCH] 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 , minus-zero.h, test-log10l.h. (main): Invoke test_function. --- ChangeLog | 7 +++++++ modules/log10l-tests | 4 ++++ tests/test-log10l.c | 15 +++++++++++++-- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 41fdb7deb..45c41973a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2012-03-31 Bruno Haible + 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 , 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. diff --git a/modules/log10l-tests b/modules/log10l-tests index ad61ed63c..54a54c3b0 100644 --- 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 @@ 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@ diff --git a/tests/test-log10l.c b/tests/test-log10l.c index 1b89b07ed..ffee3ddd2 100644 --- 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 + +#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; } -- 2.11.0