comparison ssl_certificates.t @ 1407:8c764fd93b5e

Tests: adjusted client connect timeout in various tests with SSL.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 30 Nov 2018 12:55:31 +0300
parents 94bcad5611af
children 4e48bf51714f
comparison
equal deleted inserted replaced
1406:6404fd77f367 1407:8c764fd93b5e
119 my $s; 119 my $s;
120 120
121 eval { 121 eval {
122 local $SIG{ALRM} = sub { die "timeout\n" }; 122 local $SIG{ALRM} = sub { die "timeout\n" };
123 local $SIG{PIPE} = sub { die "sigpipe\n" }; 123 local $SIG{PIPE} = sub { die "sigpipe\n" };
124 alarm(2); 124 alarm(5);
125 $s = IO::Socket::INET->new('127.0.0.1:' . port(8080)); 125 $s = IO::Socket::INET->new('127.0.0.1:' . port(8080));
126 alarm(0); 126 alarm(0);
127 }; 127 };
128 alarm(0); 128 alarm(0);
129 129