Module: ngircd.git Branch: master Commit: a90004b9133b62b3dc2ee80c572a8d0c9c607141 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=a9000...
Author: Alexander Barton alex@barton.de Date: Thu Apr 17 23:55:49 2014 +0200
Test suite: Update file headers and comments
---
src/testsuite/channel-test.e | 5 ++--- src/testsuite/check-idle.e | 5 ++--- src/testsuite/connect-test.e | 5 ++--- src/testsuite/invite-test.e | 5 +++-- src/testsuite/join-test.e | 5 +++-- src/testsuite/kick-test.e | 5 +++-- src/testsuite/message-test.e | 7 +++---- src/testsuite/misc-test.e | 5 ++--- src/testsuite/mode-test.e | 5 ++--- src/testsuite/opless-channel-test.e | 5 +++-- src/testsuite/server-link-test.e | 2 -- src/testsuite/stress-A.e | 5 ++--- src/testsuite/stress-B.e | 5 ++--- src/testsuite/who-test.e | 5 +++-- src/testsuite/whois-test.e | 2 -- 15 files changed, 32 insertions(+), 39 deletions(-)
diff --git a/src/testsuite/channel-test.e b/src/testsuite/channel-test.e index 16c67ad..dd7eb66 100644 --- a/src/testsuite/channel-test.e +++ b/src/testsuite/channel-test.e @@ -1,4 +1,5 @@ -# $Id: channel-test.e,v 1.4 2008/02/05 13:31:51 fw Exp $ +# ngIRCd test suite +# Channel test
spawn telnet localhost 6789 expect { @@ -104,5 +105,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/check-idle.e b/src/testsuite/check-idle.e index e994c14..41b8eb4 100644 --- a/src/testsuite/check-idle.e +++ b/src/testsuite/check-idle.e @@ -1,4 +1,5 @@ -# $Id: check-idle.e,v 1.2 2004/09/04 14:22:13 alex Exp $ +# ngIRCd test suite +# Idle test
spawn telnet localhost 6789 expect { @@ -28,5 +29,3 @@ expect { }
exit $r - -# -eof- diff --git a/src/testsuite/connect-test.e b/src/testsuite/connect-test.e index 49ce70c..662f5f7 100644 --- a/src/testsuite/connect-test.e +++ b/src/testsuite/connect-test.e @@ -1,4 +1,5 @@ -# $Id: connect-test.e,v 1.1 2002/09/09 10:16:24 alex Exp $ +# ngIRCd test suite +# Server connect test
spawn telnet localhost 6789 expect { @@ -17,5 +18,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/invite-test.e b/src/testsuite/invite-test.e index cc7015a..3716d19 100644 --- a/src/testsuite/invite-test.e +++ b/src/testsuite/invite-test.e @@ -1,3 +1,6 @@ +# ngIRCd test suite +# INVITE test + spawn telnet localhost 6789 expect { timeout { exit 1 } @@ -109,5 +112,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/join-test.e b/src/testsuite/join-test.e index 41a5168..28b4c54 100644 --- a/src/testsuite/join-test.e +++ b/src/testsuite/join-test.e @@ -1,3 +1,6 @@ +# ngIRCd test suite +# JOIN test + spawn telnet localhost 6789 expect { timeout { exit 1 } @@ -64,5 +67,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/kick-test.e b/src/testsuite/kick-test.e index 9412d32..3d3c1ee 100644 --- a/src/testsuite/kick-test.e +++ b/src/testsuite/kick-test.e @@ -1,3 +1,6 @@ +# ngIRCd test suite +# KICK test + spawn telnet localhost 6789 expect { timeout { exit 1 } @@ -108,5 +111,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/message-test.e b/src/testsuite/message-test.e index 6e63bb5..0e70640 100644 --- a/src/testsuite/message-test.e +++ b/src/testsuite/message-test.e @@ -1,3 +1,6 @@ +# ngIRCd test suite +# PRIVMSG and NOTICE test + spawn telnet localhost 6789 expect { timeout { exit 1 } @@ -138,12 +141,8 @@ expect { "401" }
-#cannot test host mask since localhost has no '.' as RFC requires - send "quit\r" expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/misc-test.e b/src/testsuite/misc-test.e index 0623024..a83bc5b 100644 --- a/src/testsuite/misc-test.e +++ b/src/testsuite/misc-test.e @@ -1,4 +1,5 @@ -# $Id: misc-test.e,v 1.2 2008/02/17 13:51:00 alex Exp $ +# ngIRCd test suite +# Misc test
spawn telnet localhost 6789 expect { @@ -161,5 +162,3 @@ expect { timeout { exit 1 } "ERROR" } - -# -eof- diff --git a/src/testsuite/mode-test.e b/src/testsuite/mode-test.e index 44b6e5d..d6726a4 100644 --- a/src/testsuite/mode-test.e +++ b/src/testsuite/mode-test.e @@ -1,4 +1,5 @@ -# $Id: mode-test.e,v 1.7 2008/02/16 11:27:49 fw Exp $ +# ngIRCd test suite +# MODE test
spawn telnet localhost 6789 expect { @@ -172,5 +173,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/opless-channel-test.e b/src/testsuite/opless-channel-test.e index 35d109e..7d94172 100644 --- a/src/testsuite/opless-channel-test.e +++ b/src/testsuite/opless-channel-test.e @@ -1,3 +1,6 @@ +# ngIRCd test suite +# Op-less channel test + spawn telnet localhost 6789 expect { timeout { exit 1 } @@ -28,5 +31,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/server-link-test.e b/src/testsuite/server-link-test.e index 3a1c232..cf3fae8 100644 --- a/src/testsuite/server-link-test.e +++ b/src/testsuite/server-link-test.e @@ -48,5 +48,3 @@ expect { timeout { exit 1 } "ERROR" } - -# -eof- diff --git a/src/testsuite/stress-A.e b/src/testsuite/stress-A.e index b22a2f3..256d5d1 100644 --- a/src/testsuite/stress-A.e +++ b/src/testsuite/stress-A.e @@ -1,4 +1,5 @@ -# $Id: stress-A.e,v 1.2 2005/08/12 21:35:12 alex Exp $ +# ngIRCd test suite +# "Stress" header
set timeout 30
@@ -7,5 +8,3 @@ expect { timeout { exit 1 } "Connected" } - -# -eof- diff --git a/src/testsuite/stress-B.e b/src/testsuite/stress-B.e index e260c6d..95156cb 100644 --- a/src/testsuite/stress-B.e +++ b/src/testsuite/stress-B.e @@ -1,4 +1,5 @@ -# $Id: stress-B.e,v 1.3 2005/12/30 22:12:28 alex Exp $ +# ngIRCd test suite +# "Stress" body
send "user user . . :User\r" expect { @@ -73,5 +74,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/who-test.e b/src/testsuite/who-test.e index 0a71e3f..a41e6b6 100644 --- a/src/testsuite/who-test.e +++ b/src/testsuite/who-test.e @@ -1,3 +1,6 @@ +# ngIRCd test suite +# WHO test + spawn telnet localhost 6789 expect { timeout { exit 1 } @@ -198,5 +201,3 @@ expect { timeout { exit 1 } "Connection closed" } - -# -eof- diff --git a/src/testsuite/whois-test.e b/src/testsuite/whois-test.e index fdb21bc..16b1184 100644 --- a/src/testsuite/whois-test.e +++ b/src/testsuite/whois-test.e @@ -75,5 +75,3 @@ expect { timeout { exit 1 } "ERROR" } - -# -eof-
ngircd-commits@lists.barton.de