aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-02 16:31:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-03 23:19:36 +0200
commit00c2e8da9a9555ce6171e3f7ddc5e43fc6f9bb4b (patch)
treec6322af4fdf8e5c7f8f600f19598317ea7981d72
parent59e351a572956fb99a1c1950b9b309cff5f16fc6 (diff)
runtests: remove sleep calls
Remove many one second sleeps that were done *after* each newly started test server already has been verified. They should not have any purpose there. Closes #5323
-rw-r--r--tests/runtests.pl19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index d074de9fa..a136ee062 100644
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -1572,8 +1572,6 @@ sub runhttpserver {
logmsg "RUN: $srvrname server is on PID $httppid port $port\n";
}
- sleep(1);
-
return ($httppid, $pid2, $port);
}
@@ -1666,8 +1664,6 @@ sub runhttpsserver {
logmsg "RUN: $srvrname server is PID $httpspid port $port\n";
}
- sleep(1);
-
return ($httpspid, $pid2, $port);
}
@@ -1745,8 +1741,6 @@ sub runhttptlsserver {
logmsg "RUN: $srvrname server is now running PID $httptlspid\n";
}
- sleep(1);
-
return ($httptlspid, $pid2);
}
@@ -1866,8 +1860,6 @@ sub runpingpongserver {
return 0;
}
- sleep(1);
-
return ($pid2, $ftppid);
}
@@ -1956,7 +1948,6 @@ sub runftpsserver {
}
last;
}
- sleep(1);
return ($ftpspid, $pid2, $port);
}
@@ -2039,8 +2030,6 @@ sub runtftpserver {
logmsg "RUN: $srvrname server on PID $tftppid port $port\n";
}
- sleep(1);
-
return ($pid2, $tftppid, $port);
}
@@ -2123,8 +2112,6 @@ sub runrtspserver {
logmsg "RUN: $srvrname server PID $rtsppid port $port\n";
}
- sleep(1);
-
return ($rtsppid, $pid2, $port);
}
@@ -2462,8 +2449,6 @@ sub rundictserver {
logmsg "RUN: $srvrname server is now running PID $dictpid\n";
}
- sleep(1);
-
return ($dictpid, $pid2);
}
@@ -2539,8 +2524,6 @@ sub runsmbserver {
logmsg "RUN: $srvrname server is now running PID $smbpid\n";
}
- sleep(1);
-
return ($smbpid, $pid2);
}
@@ -2615,8 +2598,6 @@ sub runnegtelnetserver {
logmsg "RUN: $srvrname server is now running PID $ntelpid\n";
}
- sleep(1);
-
return ($ntelpid, $pid2);
}