浏览代码

Fix possible timeout issue on hostname_invalid

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1362 f882894a-f735-0410-b71e-b25c423dba1c
Ton Voon 20 年之前
父节点
当前提交
6941b9f66b
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      plugins/t/check_http.t

+ 2 - 1
plugins/t/check_http.t

@@ -45,7 +45,8 @@ $res = NPTest->testCmd(
 cmp_ok( $res->return_code, '==', 2, "Webserver $hostname_invalid not valid" );
 cmp_ok( $res->return_code, '==', 2, "Webserver $hostname_invalid not valid" );
 # The first part of the message comes from the OS catalogue, so cannot check this.
 # The first part of the message comes from the OS catalogue, so cannot check this.
 # On Debian, it is Name or service not known, on Darwin, it is No address associated with nodename
 # On Debian, it is Name or service not known, on Darwin, it is No address associated with nodename
-like( $res->output, "/Unable to open TCP socket/", "Output OK");
+# Is also possible to get a socket timeout if DNS is not responding fast enough
+like( $res->output, "/Unable to open TCP socket|Socket timeout after/", "Output OK");
 
 
 $res = NPTest->testCmd(
 $res = NPTest->testCmd(
 	"./check_http --ssl www.verisign.com"
 	"./check_http --ssl www.verisign.com"