From f9c3cf286479da5d8a6ea2288f9f2c731896cd6f Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 28 Dec 2020 23:05:14 +0100 Subject: [PATCH] support: Make support_process_state_wait wait less Tests such as posix/tst-waitid.c make heavy use of support_process_state_wait, and thus on non-Linux where it falls back to sleeping, a 2s sleep makes such test time out, while 1s remains fine enough. --- support/support_process_state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/support_process_state.c b/support/support_process_state.c index e303c78fc87..8b06d230a5c 100644 --- a/support/support_process_state.c +++ b/support/support_process_state.c @@ -88,5 +88,5 @@ support_process_state_wait (pid_t pid, enum support_process_state state) xfclose (fstatus); /* Fallback to nanosleep if an invalid state is found. */ #endif - nanosleep (&(struct timespec) { 2, 0 }, NULL); + nanosleep (&(struct timespec) { 1, 0 }, NULL); } -- 2.39.5