about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2014-04-17 23:55:49 +0200
committerAlexander Barton <alex@barton.de>2014-04-17 23:56:36 +0200
commita90004b9133b62b3dc2ee80c572a8d0c9c607141 (patch)
tree156831f5c4f8e473cf12ebf7681ed400a2e2e504 /src
parent9e79ed86058c88b1264e4507acbd0ae82f5c1290 (diff)
downloadngircd-a90004b9133b62b3dc2ee80c572a8d0c9c607141.tar.gz
ngircd-a90004b9133b62b3dc2ee80c572a8d0c9c607141.zip
Test suite: Update file headers and comments
Diffstat (limited to 'src')
-rw-r--r--src/testsuite/channel-test.e5
-rw-r--r--src/testsuite/check-idle.e5
-rw-r--r--src/testsuite/connect-test.e5
-rw-r--r--src/testsuite/invite-test.e5
-rw-r--r--src/testsuite/join-test.e5
-rw-r--r--src/testsuite/kick-test.e5
-rw-r--r--src/testsuite/message-test.e7
-rw-r--r--src/testsuite/misc-test.e5
-rw-r--r--src/testsuite/mode-test.e5
-rw-r--r--src/testsuite/opless-channel-test.e5
-rw-r--r--src/testsuite/server-link-test.e2
-rw-r--r--src/testsuite/stress-A.e5
-rw-r--r--src/testsuite/stress-B.e5
-rw-r--r--src/testsuite/who-test.e5
-rw-r--r--src/testsuite/whois-test.e2
15 files changed, 32 insertions, 39 deletions
diff --git a/src/testsuite/channel-test.e b/src/testsuite/channel-test.e
index 16c67ad4..dd7eb66d 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 e994c144..41b8eb49 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 49ce70c1..662f5f7a 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 cc7015a5..3716d197 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 41a5168a..28b4c54f 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 9412d321..3d3c1ee9 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 6e63bb52..0e70640e 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 0623024d..a83bc5b4 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 44b6e5df..d6726a43 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 35d109e9..7d941720 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 3a1c232d..cf3fae80 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 b22a2f31..256d5d1f 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 e260c6d3..95156cbb 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 0a71e3f7..a41e6b6a 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 fdb21bc6..16b1184b 100644
--- a/src/testsuite/whois-test.e
+++ b/src/testsuite/whois-test.e
@@ -75,5 +75,3 @@ expect {
 	timeout { exit 1 }
 	"ERROR"
 }
-
-# -eof-