aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2018-05-07 21:00:16 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-05-07 21:01:05 +0200
commitf1ff9ae00cdb70ee7be46d2387324043737b3218 (patch)
treef1f70150625df4b16e6a32aa6ca6b35bcbea305e /tests
parented4ea51bb81d250e711b7450dd27b92df915f30e (diff)
downloadlibssh-f1ff9ae00cdb70ee7be46d2387324043737b3218.tar.gz
libssh-f1ff9ae00cdb70ee7be46d2387324043737b3218.tar.xz
libssh-f1ff9ae00cdb70ee7be46d2387324043737b3218.zip
torture: Increase wait time for process termination to 10ms
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/torture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/torture.c b/tests/torture.c
index fa9e5c02..9cae36af 100644
--- a/tests/torture.c
+++ b/tests/torture.c
@@ -219,7 +219,7 @@ int torture_terminate_process(const char *pidfile)
/* Make sure the daemon goes away! */
kill(pid, SIGTERM);
- usleep(5000);
+ usleep(10000);
rc = kill(pid, 0);
if (rc != 0) {