aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-09-10 01:14:52 +0200
committerYang Tse <yangsita@gmail.com>2011-09-10 01:14:52 +0200
commitbe8e68494cddce8ef6bddb2e5d00b554675a8ce4 (patch)
tree8b4c2bcb40151eb3245ebf21394df514e5de73d3 /tests
parenta7d8894291a67463d33636519ce8e871ed13cf11 (diff)
test harness: revert needless commit 0a5bbb2ac1
https, ftps and ssh servers allowed start up time back to previous values
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index db5023960..94c05ab8c 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -1241,7 +1241,7 @@ sub runhttpsserver {
$flags .= "--connect $HTTPPORT --accept $HTTPSPORT";
my $cmd = "$perl $srcdir/secureserver.pl $flags";
- my ($httpspid, $pid2) = startnew($cmd, $pidfile, 20, 0);
+ my ($httpspid, $pid2) = startnew($cmd, $pidfile, 15, 0);
if($httpspid <= 0 || !kill(0, $httpspid)) {
# it is NOT alive
@@ -1501,7 +1501,7 @@ sub runftpsserver {
$flags .= "--connect $FTPPORT --accept $FTPSPORT";
my $cmd = "$perl $srcdir/secureserver.pl $flags";
- my ($ftpspid, $pid2) = startnew($cmd, $pidfile, 20, 0);
+ my ($ftpspid, $pid2) = startnew($cmd, $pidfile, 15, 0);
if($ftpspid <= 0 || !kill(0, $ftpspid)) {
# it is NOT alive
@@ -1742,7 +1742,7 @@ sub runsshserver {
$flags .= "--user \"$USER\"";
my $cmd = "$perl $srcdir/sshserver.pl $flags";
- my ($sshpid, $pid2) = startnew($cmd, $pidfile, 80, 0);
+ my ($sshpid, $pid2) = startnew($cmd, $pidfile, 60, 0);
# on loaded systems sshserver start up can take longer than the timeout
# passed to startnew, when this happens startnew completes without being