diff options
Diffstat (limited to 'lib/custodian/protocol-tests/ftp.rb')
-rwxr-xr-x | lib/custodian/protocol-tests/ftp.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/custodian/protocol-tests/ftp.rb b/lib/custodian/protocol-tests/ftp.rb index c528c84..a11abaf 100755 --- a/lib/custodian/protocol-tests/ftp.rb +++ b/lib/custodian/protocol-tests/ftp.rb @@ -74,7 +74,7 @@ class FTPTest puts "FTP testing host #{host}:#{port}" if ( @test_data['verbose'] ) begin - timeout(3) do + timeout( @test_data["timeout"] ) do begin socket = TCPSocket.new( host, port ) @@ -130,6 +130,7 @@ if __FILE__ == $0 then "test_type" => "ftp", "test_port" => 21, "verbose" => 1, + "timeout" => 4, "test_alert" => "The FTP server no worky", } |