diff options
| author | Alexander Barton <alex@barton.de> | 2014-04-17 23:57:38 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2014-06-09 02:15:52 +0200 |
| commit | 3f807e104572b38143a1015be57d875088ceaebb (patch) | |
| tree | 1bf5dec4fd7be6709396d4ca99a186199a3c7c94 /src/testsuite/who-test.e | |
| parent | 39b8fc65b69c7534228e314c08604341bdf6125f (diff) | |
| download | ngircd-3f807e104572b38143a1015be57d875088ceaebb.tar.gz ngircd-3f807e104572b38143a1015be57d875088ceaebb.zip | |
Test suite: Don't use DNS lookups
Different operating systems do behave quite differently when doing DNS lookups, for example "127.0.0.1" sometimes resolves to "localhost" and sometimes to "localhost.localdomain" (for example OpenBSD). And other systems resolve "localhost" to the real host name (for example Cygwin). So not using DNS at all makes the test site much more portable.
Diffstat (limited to 'src/testsuite/who-test.e')
| -rw-r--r-- | src/testsuite/who-test.e | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testsuite/who-test.e b/src/testsuite/who-test.e index a41e6b6a..39d50ede 100644 --- a/src/testsuite/who-test.e +++ b/src/testsuite/who-test.e @@ -1,7 +1,7 @@ # ngIRCd test suite # WHO test -spawn telnet localhost 6789 +spawn telnet 127.0.0.1 6789 expect { timeout { exit 1 } "Connected" @@ -62,7 +62,7 @@ expect { ":ngircd.test.server 352 nick #channel * * ngircd.test.server nick G@ :0 Real Name" } -send "who localhos*\r" +send "who 127.0.0.*\r" expect { timeout { exit 1 } ":ngircd.test.server 352 nick \* * * ngircd.test.server nick G :0 Real Name" @@ -120,7 +120,7 @@ expect { "305 nick" } -send "who ??cal*ho*\r" +send "who ??7.*0*\r" expect { timeout { exit 1 } ":ngircd.test.server 352 nick \* * * ngircd.test.server nick H* :0 Real Name" |