repo: ngircd action: commit revision: path_from: revision_from: 5df56111c492a0509c7b31d22021975778431bf3: path_to: revision_to:
commit 5df56111c492a0509c7b31d22021975778431bf3 Author: Alexander BartonDate: Sun Jul 27 18:03:13 2008 +0200 message-test: Disable two tests using "localhost" as host name Some operating systems, for example OpenBSD and OpenSolaris, use "localhost. " instead of just "localhost" for 127.0.0.1, so the "message-test" using "localhost" failed on such systems. Don't have an idee how to make this work on all platforms ... :-/ So I simply disabled the two affected tests to make the testsuite run on OpenBSD and OpenSolaris again. diff --git a/src/testsuite/message-test.e b/src/testsuite/message-test.e
--- a/src/testsuite/message-test.e
+++ b/src/testsuite/message-test.e
@@ -53,18 +53,24 @@ expect {
"@* PRIVMSG nick :test"
}
-
-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"
-}
+# The following two tests using "localhost" as host name
+# had to be disabled, because there are operating systems
+# out there, that use "localhost." 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 "away :away\r"
expect {
-----END OF PAGE-----