From f1ff9ae00cdb70ee7be46d2387324043737b3218 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 7 May 2018 21:00:16 +0200 Subject: [PATCH] torture: Increase wait time for process termination to 10ms Signed-off-by: Andreas Schneider --- tests/torture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {