aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-05-15 11:59:24 +0000
committerYang Tse <yangsita@gmail.com>2009-05-15 11:59:24 +0000
commitb8e73495a5ae4882b3ba81558be7cdccdd2f7f49 (patch)
tree8999a7ea240f0ae3f3bc547904340b959dfcc23e
parent187cfc15948691b301ac9550a8feb0fe84413257 (diff)
Extend displaying of logfiles upon first server start-up failure for http, https, ftp, ftps and tftp test harness servers.
-rwxr-xr-xtests/runtests.pl12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 28ea9b518..13575d51f 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -848,6 +848,7 @@ sub runhttpserver {
# it is NOT alive
logmsg "RUN: failed to start the HTTP$nameext server\n";
stopserver("$pid2");
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}
@@ -858,6 +859,7 @@ sub runhttpserver {
logmsg "RUN: HTTP$nameext server failed verification\n";
# failed to talk to it properly. Kill the server and return failure
stopserver("$httppid $pid2");
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}
@@ -912,6 +914,7 @@ sub runhttpsserver {
# it is NOT alive
logmsg "RUN: failed to start the HTTPS server\n";
stopservers($verbose);
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return(0,0);
}
@@ -922,6 +925,7 @@ sub runhttpsserver {
logmsg "RUN: HTTPS server failed verification\n";
# failed to talk to it properly. Kill the server and return failure
stopserver("$httpspid $pid2");
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}
@@ -990,7 +994,7 @@ sub runftpserver {
# it is NOT alive
logmsg "RUN: failed to start the FTP$id$nameext server\n";
stopserver("$pid2");
- displaylogs($testnumcheck) if($testnumcheck == 100);
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}
@@ -1001,7 +1005,7 @@ sub runftpserver {
logmsg "RUN: FTP$id$nameext server failed verification\n";
# failed to talk to it properly. Kill the server and return failure
stopserver("$ftppid $pid2");
- displaylogs($testnumcheck) if($testnumcheck == 100);
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}
@@ -1056,6 +1060,7 @@ sub runftpsserver {
# it is NOT alive
logmsg "RUN: failed to start the FTPS server\n";
stopservers($verbose);
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return(0,0);
}
@@ -1066,6 +1071,7 @@ sub runftpsserver {
logmsg "RUN: FTPS server failed verification\n";
# failed to talk to it properly. Kill the server and return failure
stopserver("$ftpspid $pid2");
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}
@@ -1130,6 +1136,7 @@ sub runtftpserver {
# it is NOT alive
logmsg "RUN: failed to start the TFTP$id$nameext server\n";
stopserver("$pid2");
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}
@@ -1140,6 +1147,7 @@ sub runtftpserver {
logmsg "RUN: TFTP$id$nameext server failed verification\n";
# failed to talk to it properly. Kill the server and return failure
stopserver("$tftppid $pid2");
+ displaylogs($testnumcheck);
$doesntrun{$pidfile} = 1;
return (0,0);
}