diff options
| author | Dana Dahlstrom <dana+70@cs.ucsd.edu> | 2008-02-17 00:00:12 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2008-02-26 23:49:33 +0100 |
| commit | 2f71fbb2a1319d1b0aca4c9564c2e51a88b4a578 (patch) | |
| tree | 52cfbeb9ce84e266f64b1b3cdc24a701b3922e3e /src/testsuite/Makefile.am | |
| parent | 1784180bf346b6cbea86dabb0e4fdf592b19b012 (diff) | |
| download | ngircd-2f71fbb2a1319d1b0aca4c9564c2e51a88b4a578.tar.gz ngircd-2f71fbb2a1319d1b0aca4c9564c2e51a88b4a578.zip | |
Include flags in RPL_WHOREPLY messages.
RPL_WHOREPLY messages generated by IRC_WHO don't include flags (*,@,+) that should appear according to this description: http://www.mishscript.de/reference/rawhelp3.htm#raw352 Other IRC servers do include the flags. Modify who-test.e to expose missing flags, modify ngircd-test.conf to accommodate who-test.e, and fix irc-info.c to correct these problems.
Diffstat (limited to 'src/testsuite/Makefile.am')
| -rw-r--r-- | src/testsuite/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/testsuite/Makefile.am b/src/testsuite/Makefile.am index 58a617ee..6ea9597c 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.16 2008/02/11 11:06:32 fw Exp $ +# $Id: Makefile.am,v 1.17 2008/02/17 00:00:13 fw Exp $ # AUTOMAKE_OPTIONS = ../portab/ansi2knr @@ -21,7 +21,7 @@ EXTRA_DIST = \ 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-away-test.e + who-test.e stress-A.e stress-B.e check-idle.e \ ngircd-test.conf @@ -48,9 +48,9 @@ channel-test: tests.sh rm -f channel-test ln -s $(srcdir)/tests.sh channel-test -who-away-test: tests.sh - rm -f who-away-test - ln -s $(srcdir)/tests.sh who-away-test +who-test: tests.sh + rm -f who-test + ln -s $(srcdir)/tests.sh who-test mode-test: tests.sh rm -f mode-test @@ -59,7 +59,7 @@ mode-test: tests.sh TESTS = start-server.sh \ connect-test \ channel-test \ - who-away-test \ + who-test \ mode-test \ stress-server.sh \ stop-server.sh |