X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftestsuite%2FMakefile.am;h=bc8df8442deb534d61a6f4f25ad3c21397249904;hb=60acc62af79579ed72013a7a0e1c36ba2e8fb130;hp=b678e10853820dddf5ac0feee16a192e6c12dafa;hpb=06cb16580e981338dc6d4c5f49d2bf18a5088082;p=ngircd-alex.git diff --git a/src/testsuite/Makefile.am b/src/testsuite/Makefile.am index b678e108..bc8df844 100644 --- a/src/testsuite/Makefile.am +++ b/src/testsuite/Makefile.am @@ -9,7 +9,7 @@ # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. # -# $Id: Makefile.am,v 1.8 2002/09/20 15:39:24 alex Exp $ +# $Id: Makefile.am,v 1.18 2008/02/17 13:26:42 alex Exp $ # AUTOMAKE_OPTIONS = ../portab/ansi2knr @@ -17,15 +17,19 @@ AUTOMAKE_OPTIONS = ../portab/ansi2knr INCLUDES = -I$(srcdir)/../portab EXTRA_DIST = \ - getpid.sh \ + README functions.inc getpid.sh \ start-server.sh stop-server.sh tests.sh stress-server.sh \ - connect-test.e channel-test.e mode-test.e \ - stress-A.e stress-B.e check-idle.e \ + test-loop.sh wait-tests.sh \ + channel-test.e connect-test.e check-idle.e misc-test.e mode-test.e \ + opless-channel-test.e \ + who-test.e stress-A.e stress-B.e \ ngircd-test.conf +all: + clean-local: rm -rf logs tests *-test ngircd-test.log ngircd-test.motd \ - ngircd-TEST* procs.tmp + T-ngircd procs.tmp maintainer-clean-local: rm -f Makefile Makefile.in @@ -33,22 +37,40 @@ maintainer-clean-local: check_SCRIPTS = ngircd-TEST-Binary tests.sh ngircd-TEST-Binary: - cp ../ngircd/ngircd ngircd-TEST + cp ../ngircd/ngircd T-ngircd [ -f getpid.sh ] || ln -s $(srcdir)/getpid.sh . connect-test: tests.sh + rm -f connect-test ln -s $(srcdir)/tests.sh connect-test channel-test: tests.sh + rm -f channel-test ln -s $(srcdir)/tests.sh channel-test +opless-channel-test: tests.sh + rm -f opless-channel-test + ln -s $(srcdir)/tests.sh opless-channel-test + +who-test: tests.sh + rm -f who-test + ln -s $(srcdir)/tests.sh who-test + +misc-test: tests.sh + rm -f misc-test + ln -s $(srcdir)/tests.sh misc-test + mode-test: tests.sh + rm -f mode-test ln -s $(srcdir)/tests.sh mode-test TESTS = start-server.sh \ connect-test \ channel-test \ + misc-test \ mode-test \ + who-test \ + opless-channel-test \ stress-server.sh \ stop-server.sh