diff options
| author | Alexander Barton <alex@barton.de> | 2008-02-17 13:26:41 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2008-02-26 23:49:33 +0100 |
| commit | ddecfcd8310f77974803c9c67431809320646a55 (patch) | |
| tree | 5828be71a1718a170a0b8873561cd7c0a7d5a76f /src/testsuite/Makefile.am | |
| parent | 2f71fbb2a1319d1b0aca4c9564c2e51a88b4a578 (diff) | |
| download | ngircd-ddecfcd8310f77974803c9c67431809320646a55.tar.gz ngircd-ddecfcd8310f77974803c9c67431809320646a55.zip | |
Implemented IRC commands INFO, USERS (dummy), and SUMMON (dummy).
Diffstat (limited to 'src/testsuite/Makefile.am')
| -rw-r--r-- | src/testsuite/Makefile.am | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/testsuite/Makefile.am b/src/testsuite/Makefile.am index 6ea9597c..6512aaae 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.17 2008/02/17 00:00:13 fw Exp $ +# $Id: Makefile.am,v 1.18 2008/02/17 13:26:42 alex Exp $ # AUTOMAKE_OPTIONS = ../portab/ansi2knr @@ -20,9 +20,8 @@ EXTRA_DIST = \ README functions.inc getpid.sh \ start-server.sh stop-server.sh tests.sh stress-server.sh \ test-loop.sh wait-tests.sh \ - connect-test.e channel-test.e mode-test.e \ - who-test.e - stress-A.e stress-B.e check-idle.e \ + channel-test.e connect-test.e check-idle.e misc-test.e mode-test.e \ + who-test.e stress-A.e stress-B.e \ ngircd-test.conf all: @@ -52,6 +51,10 @@ 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 @@ -59,8 +62,9 @@ mode-test: tests.sh TESTS = start-server.sh \ connect-test \ channel-test \ - who-test \ + misc-test \ mode-test \ + who-test \ stress-server.sh \ stop-server.sh |