changeset 6570:c965a389db71

Simplify my *-tests modules.
author Simon Josefsson <simon@josefsson.org>
date Thu, 19 Jan 2006 09:05:56 +0000
parents ac85e12d60cc
children f7945ef945d6
files ChangeLog gnulib-tool 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/rijndael-tests
diffstat 24 files changed, 40 insertions(+), 45 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2006-01-19  Simon Josefsson  <jas@extundo.com>
+
+	* 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  <jas@extundo.com>
 
 	* modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
--- 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 ="
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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
--- 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