From: Bruno Haible Date: Sat, 31 Mar 2012 19:41:32 +0000 (+0200) Subject: log10f tests: More tests. X-Git-Tag: v0.1~792 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=c959d1f3dd8168e3ae4ce7cadab44c1d520bef44;p=gnulib.git 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 , minus-zero.h, test-log10.h. (main): Invoke test_function. --- diff --git a/ChangeLog b/ChangeLog index f4b570b18..41fdb7deb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2012-03-31 Bruno Haible + 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 , 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, diff --git a/modules/log10f-tests b/modules/log10f-tests index 1cd295cd3..cfe131d66 100644 --- 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 @@ configure.ac: Makefile.am: TESTS += test-log10f check_PROGRAMS += test-log10f +test_log10f_SOURCES = test-log10f.c randomf.c test_log10f_LDADD = $(LDADD) @LOG10F_LIBM@ diff --git a/tests/test-log10f.c b/tests/test-log10f.c index c403cf3e1..c0a92ada5 100644 --- a/tests/test-log10f.c +++ b/tests/test-log10f.c @@ -23,10 +23,19 @@ #include "signature.h" SIGNATURE_CHECK (log10f, float, (float)); +#include + +#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 @@ main () y = log10f (x); ASSERT (y >= -0.2218488f && y <= -0.2218487f); + test_function (); + return 0; }