# HG changeset patch # User Simon Josefsson # Date 1137661556 0 # Node ID c965a389db710b88f1884d9c5dccc93ae6aebc96 # Parent ac85e12d60cc2c1261d1e757d6e190f6482e0984 Simplify my *-tests modules. diff --git a/ChangeLog b/ChangeLog --- 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 --- 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 @@ 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 --- a/modules/arcfour-tests +++ b/modules/arcfour-tests @@ -7,5 +7,4 @@ 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 --- a/modules/arctwo-tests +++ b/modules/arctwo-tests @@ -7,5 +7,4 @@ 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 --- a/modules/crc-tests +++ b/modules/crc-tests @@ -7,5 +7,4 @@ 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 --- a/modules/des-tests +++ b/modules/des-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-arcfour-tests +++ b/modules/gc-arcfour-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-arctwo-tests +++ b/modules/gc-arctwo-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-des-tests +++ b/modules/gc-des-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-hmac-md5-tests +++ b/modules/gc-hmac-md5-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-hmac-sha1-tests +++ b/modules/gc-hmac-sha1-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-md2-tests +++ b/modules/gc-md2-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-md4-tests +++ b/modules/gc-md4-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-md5-tests +++ b/modules/gc-md5-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-pbkdf2-sha1-tests +++ b/modules/gc-pbkdf2-sha1-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-rijndael-tests +++ b/modules/gc-rijndael-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-sha1-tests +++ b/modules/gc-sha1-tests @@ -7,8 +7,7 @@ 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 --- a/modules/gc-tests +++ b/modules/gc-tests @@ -7,8 +7,7 @@ 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 --- a/modules/hmac-md5-tests +++ b/modules/hmac-md5-tests @@ -7,5 +7,4 @@ 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 --- a/modules/hmac-sha1-tests +++ b/modules/hmac-sha1-tests @@ -7,5 +7,4 @@ 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 --- a/modules/md2-tests +++ b/modules/md2-tests @@ -7,8 +7,7 @@ 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 --- a/modules/md4-tests +++ b/modules/md4-tests @@ -7,8 +7,7 @@ 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 --- a/modules/md5-tests +++ b/modules/md5-tests @@ -7,5 +7,4 @@ 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 --- a/modules/rijndael-tests +++ b/modules/rijndael-tests @@ -7,5 +7,4 @@ Makefile.am: TESTS += test-rijndael$(EXEEXT) -noinst_PROGRAMS += test-rijndael -test_rijndael_SOURCES = test-rijndael.c +check_PROGRAMS += test-rijndael