comparison ssl_password_file.t @ 1421:4e48bf51714f

Tests: aligned various generic read timeouts to http_end(). It was observed that previous timeout values could not be enough when making mass-building, in particular, when running with modsecurity.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 24 Dec 2018 14:24:51 +0300
parents 8c764fd93b5e
children dbce8fb5f5f8
comparison
equal deleted inserted replaced
1420:ea593a9bab09 1421:4e48bf51714f
145 my $s; 145 my $s;
146 146
147 eval { 147 eval {
148 local $SIG{ALRM} = sub { die "timeout\n" }; 148 local $SIG{ALRM} = sub { die "timeout\n" };
149 local $SIG{PIPE} = sub { die "sigpipe\n" }; 149 local $SIG{PIPE} = sub { die "sigpipe\n" };
150 alarm(5); 150 alarm(8);
151 $s = IO::Socket::SSL->new( 151 $s = IO::Socket::SSL->new(
152 Proto => 'tcp', 152 Proto => 'tcp',
153 PeerAddr => '127.0.0.1:' . port(8081), 153 PeerAddr => '127.0.0.1:' . port(8081),
154 SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(), 154 SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(),
155 SSL_error_trap => sub { die $_[1] } 155 SSL_error_trap => sub { die $_[1] }