]> arthur.barton.de Git - ngircd-alex.git/commitdiff
message-test: Disable two tests using "localhost" as host name
authorAlexander Barton <alex@barton.de>
Sun, 27 Jul 2008 16:03:13 +0000 (18:03 +0200)
committerAlexander Barton <alex@barton.de>
Sun, 27 Jul 2008 16:03:13 +0000 (18:03 +0200)
Some operating systems, for example OpenBSD and OpenSolaris, use
"localhost.<domain>" 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.

src/testsuite/message-test.e

index dd164822e418292bd46a412ffb76319e79257a39..eb26ac45a66828eb1f86b0e2a7acc7bf37b2d5a2 100644 (file)
@@ -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.<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 "away :away\r"
 expect {