1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-10-23 02:07:37 +00:00

- EXTRA_DIST ergaenzt, clean-Target erweitert.

- neues Script "stress-server.sh" integriert.
This commit is contained in:
Alexander Barton
2002-09-09 22:56:07 +00:00
parent d040fa2a7d
commit fc6f64742c
7 changed files with 171 additions and 6 deletions

View File

@@ -0,0 +1,31 @@
# $Id: check-idle.e,v 1.1 2002/09/09 22:56:07 alex Exp $
spawn telnet localhost 6789
expect {
timeout { exit 1 }
"Connected"
}
send "nick IdleTest\r"
send "user idle . . :Idle-Test\r"
expect {
timeout { exit 1 }
"376"
}
send "lusers\r"
expect {
timeout { exit 1 }
"251 IdleTest :There are 1 users and 0 services on 1 servers" { set r 0 }
"251 IdleTest :There are" { set r 99 }
}
send "quit\r"
expect {
timeout { exit 1 }
"Connection closed"
}
exit $r
# -eof-