comparison stream_ssl_preread_alpn.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
125 my $s = stream('127.0.0.1:' . port($port)); 125 my $s = stream('127.0.0.1:' . port($port));
126 126
127 eval { 127 eval {
128 local $SIG{ALRM} = sub { die "timeout\n" }; 128 local $SIG{ALRM} = sub { die "timeout\n" };
129 local $SIG{PIPE} = sub { die "sigpipe\n" }; 129 local $SIG{PIPE} = sub { die "sigpipe\n" };
130 alarm(5); 130 alarm(8);
131 IO::Socket::SSL->start_SSL($s->{_socket}, 131 IO::Socket::SSL->start_SSL($s->{_socket},
132 SSL_alpn_protocols => [ @alpn ], 132 SSL_alpn_protocols => [ @alpn ],
133 SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(), 133 SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(),
134 SSL_error_trap => sub { die $_[1] } 134 SSL_error_trap => sub { die $_[1] }
135 ); 135 );