aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-01-18 02:53:25 +0000
committerYang Tse <yangsita@gmail.com>2010-01-18 02:53:25 +0000
commit3fdced357bc41836b02d09ad19281be7143f2037 (patch)
tree8c6069a0e8998c519482376f307f99115346ca27 /tests
parentce2ac665e44a9e18f1076d5c4acf1d545678508c (diff)
- Remove QD restarting of https servers. Proper fixing required.
This will make tests 310 311 and 312 fail while fixing. - Remove some debug messages
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl16
1 files changed, 3 insertions, 13 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index b37d9145b..a3240eac8 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -1001,34 +1001,27 @@ sub runhttpsserver {
my $flags = "";
if(!$stunnel) {
- logmsg "DEBUG: runhttpsserver: return point 1\n";
return (0,0);
}
$server = servername_id($proto, $ipvnum, $idnum);
- logmsg "DEBUG: runhttpsserver: server = $server\n";
$pidfile = $serverpidfile{$server};
- logmsg "DEBUG: runhttpsserver: pidfile = $pidfile\n";
# don't retry if the server doesn't work
if ($doesntrun{$pidfile}) {
- logmsg "DEBUG: runhttpsserver: return point 2\n";
return (0,0);
}
my $pid = processexists($pidfile);
if($pid > 0) {
- logmsg "DEBUG: runhttpsserver: pid = $pid\n";
stopserver($server, "$pid");
}
unlink($pidfile) if(-f $pidfile);
$srvrname = servername_str($proto, $ipvnum, $idnum);
- logmsg "DEBUG: runhttpsserver: srvrname = $srvrname\n";
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
- logmsg "DEBUG: runhttpsserver: logfile = $logfile\n";
$flags .= "--verbose " if($debugprotocol);
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
@@ -1037,11 +1030,9 @@ sub runhttpsserver {
$flags .= "--certfile \"$certfile\" " if($certfile);
$flags .= "--stunnel \"$stunnel\" --srcdir \"$srcdir\" ";
$flags .= "--connect $HTTPPORT --accept $HTTPSPORT";
- logmsg "DEBUG: runhttpsserver: flags = $flags\n";
my $cmd = "$perl $srcdir/secureserver.pl $flags";
my ($httpspid, $pid2) = startnew($cmd, $pidfile, 15, 0);
- logmsg "DEBUG: runhttpsserver: httpspid = $httpspid : pid2 = $pid2\n";
if($httpspid <= 0 || !kill(0, $httpspid)) {
# it is NOT alive
@@ -1049,7 +1040,6 @@ sub runhttpsserver {
stopserver($server, "$pid2");
displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
- logmsg "DEBUG: runhttpsserver: return point 3\n";
return(0,0);
}
@@ -1061,7 +1051,6 @@ sub runhttpsserver {
stopserver($server, "$httpspid $pid2");
displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
- logmsg "DEBUG: runhttpsserver: return point 4\n";
return (0,0);
}
# Here pid3 is actually the pid returned by the unsecure-http server.
@@ -1072,7 +1061,6 @@ sub runhttpsserver {
sleep(1);
- logmsg "DEBUG: runhttpsserver: return point 5\n";
return ($httpspid, $pid2);
}
@@ -3047,7 +3035,9 @@ sub startservers {
printf ("* pid http => %d %d\n", $pid, $pid2) if($verbose);
$run{'http'}="$pid $pid2";
}
- if(1 || !$run{'https'}) { # QD to restart always conf file may change
+ # FIXME properly - ssl tests may use different cert files.
+ # We must stop running server when using a different cert.
+ if(!$run{'https'}) {
($pid, $pid2) = runhttpsserver($verbose,"",$whatlist[1]);
if($pid <= 0) {
return "failed starting HTTPS server (stunnel)";