From efc1f57b9d5d6d528919cedfe2e4c41e786341d2 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Thu, 19 Jan 2006 09:05:56 +0000 Subject: [PATCH] Simplify my *-tests modules. --- ChangeLog | 16 ++++++++++++++++ gnulib-tool | 3 ++- modules/arcfour-tests | 3 +-- modules/arctwo-tests | 3 +-- modules/crc-tests | 3 +-- modules/des-tests | 3 +-- modules/gc-arcfour-tests | 3 +-- modules/gc-arctwo-tests | 3 +-- modules/gc-des-tests | 3 +-- modules/gc-hmac-md5-tests | 3 +-- modules/gc-hmac-sha1-tests | 3 +-- modules/gc-md2-tests | 3 +-- modules/gc-md4-tests | 3 +-- modules/gc-md5-tests | 3 +-- modules/gc-pbkdf2-sha1-tests | 3 +-- modules/gc-rijndael-tests | 3 +-- modules/gc-sha1-tests | 3 +-- modules/gc-tests | 3 +-- modules/hmac-md5-tests | 3 +-- modules/hmac-sha1-tests | 3 +-- modules/md2-tests | 3 +-- modules/md4-tests | 3 +-- modules/md5-tests | 3 +-- modules/rijndael-tests | 3 +-- 24 files changed, 40 insertions(+), 45 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5fe0afdb66..8efc39651e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +2006-01-19 Simon Josefsson + + * gnulib-tool: Set check_PROGRAMS. + + * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests, + modules/des-tests, modules/gc-arcfour-tests, + modules/gc-arctwo-tests, modules/gc-des-tests, + modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests, + modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests, + modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests, + modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests, + modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests, + modules/md5-tests, modules/readline, modules/rijndael-tests: Use + check_PROGRAMS instead of noinst_PROGRAMS to be able to remove + test_*_SOURCES. + 2006-01-18 Simon Josefsson * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests, diff --git a/gnulib-tool b/gnulib-tool index 3ecc92da3b..45c1449dd2 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2006-01-12 15:39:50 $' +cvsdatestamp='$Date: 2006-01-19 09:05:56 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` @@ -806,6 +806,7 @@ func_emit_tests_Makefile_am () echo "TESTS =" echo "TESTS_ENVIRONMENT =" echo "noinst_PROGRAMS =" + echo "check_PROGRAMS =" echo "noinst_HEADERS =" echo "EXTRA_DIST =" echo "BUILT_SOURCES =" diff --git a/modules/arcfour-tests b/modules/arcfour-tests index ec9fe3f8b9..61c710453c 100644 --- a/modules/arcfour-tests +++ b/modules/arcfour-tests @@ -7,5 +7,4 @@ configure.ac: Makefile.am: TESTS += test-arcfour$(EXEEXT) -noinst_PROGRAMS += test-arcfour -test_arcfour_SOURCES = test-arcfour.c +check_PROGRAMS += test-arcfour diff --git a/modules/arctwo-tests b/modules/arctwo-tests index dc2b3f803c..48793322ad 100644 --- a/modules/arctwo-tests +++ b/modules/arctwo-tests @@ -7,5 +7,4 @@ configure.ac: Makefile.am: TESTS += test-arctwo$(EXEEXT) -noinst_PROGRAMS += test-arctwo -test_arctwo_SOURCES = test-arctwo.c +check_PROGRAMS += test-arctwo diff --git a/modules/crc-tests b/modules/crc-tests index 0e57b6e1fc..b3fcc09a5d 100644 --- a/modules/crc-tests +++ b/modules/crc-tests @@ -7,5 +7,4 @@ configure.ac: Makefile.am: TESTS += test-crc$(EXEEXT) -noinst_PROGRAMS += test-crc -test_crc_SOURCES = test-crc.c +check_PROGRAMS += test-crc diff --git a/modules/des-tests b/modules/des-tests index 1dfd3f68e3..505ee2062d 100644 --- a/modules/des-tests +++ b/modules/des-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-des$(EXEEXT) -noinst_PROGRAMS += test-des -test_des_SOURCES = test-des.c +check_PROGRAMS += test-des License: LGPL diff --git a/modules/gc-arcfour-tests b/modules/gc-arcfour-tests index d418b37bf1..80d7893614 100644 --- a/modules/gc-arcfour-tests +++ b/modules/gc-arcfour-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-arcfour$(EXEEXT) -noinst_PROGRAMS += test-gc-arcfour -test_gc_arcfour_SOURCES = test-gc-arcfour.c +check_PROGRAMS += test-gc-arcfour License: LGPL diff --git a/modules/gc-arctwo-tests b/modules/gc-arctwo-tests index 7df7586dea..6f85952e8c 100644 --- a/modules/gc-arctwo-tests +++ b/modules/gc-arctwo-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-arctwo$(EXEEXT) -noinst_PROGRAMS += test-gc-arctwo -test_gc_arctwo_SOURCES = test-gc-arctwo.c +check_PROGRAMS += test-gc-arctwo License: LGPL diff --git a/modules/gc-des-tests b/modules/gc-des-tests index eaf2bceb39..9ed43a8e63 100644 --- a/modules/gc-des-tests +++ b/modules/gc-des-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-des$(EXEEXT) -noinst_PROGRAMS += test-gc-des -test_gc_des_SOURCES = test-gc-des.c +check_PROGRAMS += test-gc-des License: LGPL diff --git a/modules/gc-hmac-md5-tests b/modules/gc-hmac-md5-tests index b209e13232..01472add41 100644 --- a/modules/gc-hmac-md5-tests +++ b/modules/gc-hmac-md5-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-hmac-md5$(EXEEXT) -noinst_PROGRAMS += test-gc-hmac-md5 -test_gc_hmac_md5_SOURCES = test-gc-hmac-md5.c +check_PROGRAMS += test-gc-hmac-md5 License: LGPL diff --git a/modules/gc-hmac-sha1-tests b/modules/gc-hmac-sha1-tests index f23d720996..3e1190a91e 100644 --- a/modules/gc-hmac-sha1-tests +++ b/modules/gc-hmac-sha1-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-hmac-sha1$(EXEEXT) -noinst_PROGRAMS += test-gc-hmac-sha1 -test_gc_hmac_sha1_SOURCES = test-gc-hmac-sha1.c +check_PROGRAMS += test-gc-hmac-sha1 License: LGPL diff --git a/modules/gc-md2-tests b/modules/gc-md2-tests index 8dd4a7cc41..4bcc456d85 100644 --- a/modules/gc-md2-tests +++ b/modules/gc-md2-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-md2$(EXEEXT) -noinst_PROGRAMS += test-gc-md2 -test_gc_md2_SOURCES = test-gc-md2.c +check_PROGRAMS += test-gc-md2 License: LGPL diff --git a/modules/gc-md4-tests b/modules/gc-md4-tests index 7f0cb23ee5..226213deb9 100644 --- a/modules/gc-md4-tests +++ b/modules/gc-md4-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-md4$(EXEEXT) -noinst_PROGRAMS += test-gc-md4 -test_gc_md4_SOURCES = test-gc-md4.c +check_PROGRAMS += test-gc-md4 License: LGPL diff --git a/modules/gc-md5-tests b/modules/gc-md5-tests index b443be19f9..a6bd0fe96a 100644 --- a/modules/gc-md5-tests +++ b/modules/gc-md5-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-md5$(EXEEXT) -noinst_PROGRAMS += test-gc-md5 -test_gc_md5_SOURCES = test-gc-md5.c +check_PROGRAMS += test-gc-md5 License: LGPL diff --git a/modules/gc-pbkdf2-sha1-tests b/modules/gc-pbkdf2-sha1-tests index b6a94172b2..1d59d5c5d4 100644 --- a/modules/gc-pbkdf2-sha1-tests +++ b/modules/gc-pbkdf2-sha1-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-pbkdf2-sha1$(EXEEXT) -noinst_PROGRAMS += test-gc-pbkdf2-sha1 -test_gc_pbkdf2_sha1_SOURCES = test-gc-pbkdf2-sha1.c +check_PROGRAMS += test-gc-pbkdf2-sha1 License: LGPL diff --git a/modules/gc-rijndael-tests b/modules/gc-rijndael-tests index c757372040..ff8c782f9a 100644 --- a/modules/gc-rijndael-tests +++ b/modules/gc-rijndael-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-rijndael$(EXEEXT) -noinst_PROGRAMS += test-gc-rijndael -test_gc_rijndael_SOURCES = test-gc-rijndael.c +check_PROGRAMS += test-gc-rijndael License: LGPL diff --git a/modules/gc-sha1-tests b/modules/gc-sha1-tests index b225615327..7c5750ed1a 100644 --- a/modules/gc-sha1-tests +++ b/modules/gc-sha1-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc-sha1$(EXEEXT) -noinst_PROGRAMS += test-gc-sha1 -test_gc_sha1_SOURCES = test-gc-sha1.c +check_PROGRAMS += test-gc-sha1 License: LGPL diff --git a/modules/gc-tests b/modules/gc-tests index a50a73a09c..2b216bfaec 100644 --- a/modules/gc-tests +++ b/modules/gc-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-gc$(EXEEXT) -noinst_PROGRAMS += test-gc -test_gc_SOURCES = test-gc.c +check_PROGRAMS += test-gc License: LGPL diff --git a/modules/hmac-md5-tests b/modules/hmac-md5-tests index 9715b3fdc5..f8968c3f18 100644 --- a/modules/hmac-md5-tests +++ b/modules/hmac-md5-tests @@ -7,5 +7,4 @@ configure.ac: Makefile.am: TESTS += test-hmac-md5$(EXEEXT) -noinst_PROGRAMS += test-hmac-md5 -test_hmac_md5_SOURCES = test-hmac-md5.c +check_PROGRAMS += test-hmac-md5 diff --git a/modules/hmac-sha1-tests b/modules/hmac-sha1-tests index 3fae99dd17..c750ace0a4 100644 --- a/modules/hmac-sha1-tests +++ b/modules/hmac-sha1-tests @@ -7,5 +7,4 @@ configure.ac: Makefile.am: TESTS += test-hmac-sha1$(EXEEXT) -noinst_PROGRAMS += test-hmac-sha1 -test_hmac_sha1_SOURCES = test-hmac-sha1.c +check_PROGRAMS += test-hmac-sha1 diff --git a/modules/md2-tests b/modules/md2-tests index 6dd8883d4a..f358e66ef7 100644 --- a/modules/md2-tests +++ b/modules/md2-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-md2$(EXEEXT) -noinst_PROGRAMS += test-md2 -test_md2_SOURCES = test-md2.c +check_PROGRAMS += test-md2 License: LGPL diff --git a/modules/md4-tests b/modules/md4-tests index f08d46d470..f47fcb0f5b 100644 --- a/modules/md4-tests +++ b/modules/md4-tests @@ -7,8 +7,7 @@ configure.ac: Makefile.am: TESTS += test-md4$(EXEEXT) -noinst_PROGRAMS += test-md4 -test_md4_SOURCES = test-md4.c +check_PROGRAMS += test-md4 License: LGPL diff --git a/modules/md5-tests b/modules/md5-tests index 7e9500d099..52e5d1ffb9 100644 --- a/modules/md5-tests +++ b/modules/md5-tests @@ -7,5 +7,4 @@ configure.ac: Makefile.am: TESTS += test-md5$(EXEEXT) -noinst_PROGRAMS += test-md5 -test_md5_SOURCES = test-md5.c +check_PROGRAMS += test-md5 diff --git a/modules/rijndael-tests b/modules/rijndael-tests index d435962084..8be78fafcc 100644 --- a/modules/rijndael-tests +++ b/modules/rijndael-tests @@ -7,5 +7,4 @@ configure.ac: Makefile.am: TESTS += test-rijndael$(EXEEXT) -noinst_PROGRAMS += test-rijndael -test_rijndael_SOURCES = test-rijndael.c +check_PROGRAMS += test-rijndael -- 2.30.2