# HG changeset patch # User Bruno Haible # Date 1226788522 -3600 # Node ID 737615218fc6b82ea7c79b15ee9cb54e5c5928bd # Parent 2d3e8b43c9f45f54220308c5829fb61c4fe0ea69 Avoid generating same test program with two different rules. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-11-15 Bruno Haible + + Avoid generating same test program with two different rules. + * modules/frexp-nolibm-tests (Makefile.am): Rename test program from + test-frexp to test-frexp-nolibm. + * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from + test-frexpl to test-frexpl-nolibm. + 2008-11-15 Bruno Haible * modules/frexpl-tests (Makefile.am): Link test-frexpl with diff --git a/modules/frexp-nolibm-tests b/modules/frexp-nolibm-tests --- a/modules/frexp-nolibm-tests +++ b/modules/frexp-nolibm-tests @@ -8,8 +8,9 @@ configure.ac: Makefile.am: -TESTS += test-frexp -check_PROGRAMS += test-frexp +TESTS += test-frexp-nolibm +check_PROGRAMS += test-frexp-nolibm +test_frexp_nolibm_SOURCES = test-frexp.c License: LGPL diff --git a/modules/frexpl-nolibm-tests b/modules/frexpl-nolibm-tests --- a/modules/frexpl-nolibm-tests +++ b/modules/frexpl-nolibm-tests @@ -9,8 +9,9 @@ configure.ac: Makefile.am: -TESTS += test-frexpl -check_PROGRAMS += test-frexpl +TESTS += test-frexpl-nolibm +check_PROGRAMS += test-frexpl-nolibm +test_frexpl_nolibm_SOURCES = test-frexpl.c License: LGPL