diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-14 16:05:03 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-14 16:05:03 +0000 |
commit | dff1f98662289589ca6227bffa885f90b5773e62 (patch) | |
tree | ea4c7718d46e252d583dd37bdd0c502025ee8e27 /lib/custodian/protocol-tests/ldap.rb | |
parent | e880c1890738793d176c6d07e35666116fc34514 (diff) |
Updated each test to use the timeout period specified in the JSON
hash. Update the trivial test to set such a thing too.
Diffstat (limited to 'lib/custodian/protocol-tests/ldap.rb')
-rwxr-xr-x | lib/custodian/protocol-tests/ldap.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/custodian/protocol-tests/ldap.rb b/lib/custodian/protocol-tests/ldap.rb index cec146b..5c94dd8 100755 --- a/lib/custodian/protocol-tests/ldap.rb +++ b/lib/custodian/protocol-tests/ldap.rb @@ -74,7 +74,7 @@ class LDAPTest puts "LDAP testing host #{host}:#{port}" if ( @test_data['verbose'] ) begin - timeout(3) do + timeout(@test_data["timeout"]) do begin socket = TCPSocket.new( host, port ) @@ -122,6 +122,7 @@ if __FILE__ == $0 then "test_type" => "ldap", "test_port" => 389, "verbose" => 1, + "timeout" => 5, "test_alert" => "LDAP is down?", } |