diff options
| author | Alexander Barton <alex@barton.de> | 2014-11-01 20:14:09 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2014-11-01 20:14:09 +0100 |
| commit | 31b3c83c1f1b18fa1ed0501e95ed8e5f6cc6d407 (patch) | |
| tree | e1b5851e2a084047888692d5d3aa4622dbc73391 /src/testsuite/message-test.e | |
| parent | 6e4235443eb4dee0930a65e613c8bf5e00331f73 (diff) | |
| parent | 3f807e104572b38143a1015be57d875088ceaebb (diff) | |
| download | ngircd-31b3c83c1f1b18fa1ed0501e95ed8e5f6cc6d407.tar.gz ngircd-31b3c83c1f1b18fa1ed0501e95ed8e5f6cc6d407.zip | |
Merge remote-tracking branch 'alex/TestsuiteNoDNS'
* alex/TestsuiteNoDNS: Test suite: Don't use DNS lookups
Diffstat (limited to 'src/testsuite/message-test.e')
| -rw-r--r-- | src/testsuite/message-test.e | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/src/testsuite/message-test.e b/src/testsuite/message-test.e index 0e70640e..5dc325de 100644 --- a/src/testsuite/message-test.e +++ b/src/testsuite/message-test.e @@ -1,7 +1,7 @@ # ngIRCd test suite # PRIVMSG and NOTICE test -spawn telnet localhost 6789 +spawn telnet 127.0.0.1 6789 expect { timeout { exit 1 } "Connected" @@ -72,24 +72,17 @@ expect { "MODE nick :-b" } -# The following two tests using "localhost" as host name -# had to be disabled, because there are operating systems -# out there, that use "localhost.<domain>" as host name -# for 127.0.0.1 instead of just "localhost". -# (for example OpenBSD 4, OpenSolaris, ...) -# -#send "privmsg ~user\%localhost :test\r" -#expect { -# timeout { exit 1 } -# "@* PRIVMSG nick :test" -#} -# -#send "privmsg Nick!~User@LocalHost :test\r" -#expect { -# timeout { exit 1 } -# "@* PRIVMSG nick :test" -# "401" -#} +send "privmsg ~user\%127.0.0.1 :test\r" +expect { + timeout { exit 1 } + "@* PRIVMSG nick :test" +} + +send "privmsg Nick!~User@127.0.0.1 :test\r" +expect { + timeout { exit 1 } + "@* PRIVMSG nick :test" +} send "away :away\r" expect { |