changeset 6584:b79b3ca35615

Simplify.
author Bruno Haible <bruno@clisp.org>
date Mon, 23 Jan 2006 20:38:51 +0000
parents eb8d54cb67a4
children ec2937ed14c0
files ChangeLog modules/lock-tests modules/tls-tests
diffstat 3 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-19  Simon Josefsson  <jas@extundo.com>
+
+	* modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
+	Remove the test_*_SOURCES variable: automake infers it by default.
+	* modules/tls-tests: Likewise.
+
 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
 
 	 * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
--- a/modules/lock-tests
+++ b/modules/lock-tests
@@ -14,7 +14,6 @@
 
 Makefile.am:
 TESTS += test-lock
-noinst_PROGRAMS += test-lock
-test_lock_SOURCES = test-lock.c
+check_PROGRAMS += test-lock
 test_lock_LDADD = @LIBMULTITHREAD@ @LIBSCHED@ $(LDADD)
 
--- a/modules/tls-tests
+++ b/modules/tls-tests
@@ -14,7 +14,6 @@
 
 Makefile.am:
 TESTS += test-tls
-noinst_PROGRAMS += test-tls
-test_tls_SOURCES = test-tls.c
+check_PROGRAMS += test-tls
 test_tls_LDADD = @LIBMULTITHREAD@ @LIBSCHED@ $(LDADD)