summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--modules/frexp-nolibm-tests4
-rw-r--r--modules/frexpl-nolibm-tests4
3 files changed, 17 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 10233c9e9b..a2bb84ee0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2012-03-07 Jim Meyering <meyering@redhat.com>
+ Bruno Haible <bruno@clisp.org>
+
+ 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 <bruno@clisp.org>
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