From: Jim Meyering Date: Thu, 8 Mar 2012 03:23:53 +0000 (+0100) Subject: frexp-nolibm, frexpl-nolibm tests: Fix bug introduced on 2012-03-03. X-Git-Tag: v0.1~918 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=7caf68e5778401258faad7e994986e60b7a87aa8;p=gnulib.git frexp-nolibm, frexpl-nolibm tests: Fix bug introduced on 2012-03-03. * modules/frexp-nolibm-tests (Files): Add tests/test-frexp.h, tests/randomd.c. (Makefile.am): Add randomd.c to test_frexp_nolibm_SOURCES. * modules/frexpl-nolibm-tests (Files): Add tests/test-frexp.h, tests/randoml.c. (Makefile.am): Add randoml.c to test_frexpl_nolibm_SOURCES. --- diff --git a/ChangeLog b/ChangeLog index 10233c9e9b..a2bb84ee0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2012-03-07 Jim Meyering + Bruno Haible + + frexp-nolibm, frexpl-nolibm tests: Fix bug introduced on 2012-03-03. + * modules/frexp-nolibm-tests (Files): Add tests/test-frexp.h, + tests/randomd.c. + (Makefile.am): Add randomd.c to test_frexp_nolibm_SOURCES. + * modules/frexpl-nolibm-tests (Files): Add tests/test-frexp.h, + tests/randoml.c. + (Makefile.am): Add randoml.c to test_frexpl_nolibm_SOURCES. + 2012-03-07 Bruno Haible expm1l: Avoid compilation error on AIX. diff --git a/modules/frexp-nolibm-tests b/modules/frexp-nolibm-tests index 963a52ec4a..39e81590ee 100644 --- a/modules/frexp-nolibm-tests +++ b/modules/frexp-nolibm-tests @@ -1,10 +1,12 @@ Files: tests/test-frexp.c +tests/test-frexp.h tests/minus-zero.h tests/infinity.h tests/nan.h tests/signature.h tests/macros.h +tests/randomd.c Depends-on: isnand-nolibm @@ -15,4 +17,4 @@ configure.ac: Makefile.am: TESTS += test-frexp-nolibm check_PROGRAMS += test-frexp-nolibm -test_frexp_nolibm_SOURCES = test-frexp.c +test_frexp_nolibm_SOURCES = test-frexp.c randomd.c diff --git a/modules/frexpl-nolibm-tests b/modules/frexpl-nolibm-tests index ffc6892de0..7f5d547779 100644 --- a/modules/frexpl-nolibm-tests +++ b/modules/frexpl-nolibm-tests @@ -1,10 +1,12 @@ Files: tests/test-frexpl.c +tests/test-frexp.h tests/minus-zero.h tests/infinity.h tests/nan.h tests/signature.h tests/macros.h +tests/randoml.c Depends-on: fpucw @@ -16,4 +18,4 @@ configure.ac: Makefile.am: TESTS += test-frexpl-nolibm check_PROGRAMS += test-frexpl-nolibm -test_frexpl_nolibm_SOURCES = test-frexpl.c +test_frexpl_nolibm_SOURCES = test-frexpl.c randoml.c