torture: Increase wait time for process termination to 10ms

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2018-05-07 21:00:16 +02:00
parent ed4ea51bb8
commit f1ff9ae00c

View File

@@ -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) {