diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2021-02-13 20:31:44 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2021-02-13 21:34:20 +0000 |
commit | 73141a5abf8a3699249e401522fe9174b5aa8a1b (patch) | |
tree | da2238c3d43c951e58374c9b99544705c170558a /src | |
parent | be839a2609381f535f263ed0c459a4ebf3fd5d1d (diff) |
Testsuite: when generating a bounce message, allow time for exec to run before before feeding the message
This is to keep debug output in similar order on different platforms
Diffstat (limited to 'src')
-rw-r--r-- | src/src/child.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/src/child.c b/src/src/child.c index 1407b3718..948e0d669 100644 --- a/src/src/child.c +++ b/src/src/child.c @@ -269,6 +269,8 @@ if (pid == 0) } } +testharness_pause_ms(100); /* let child work even longer, for exec */ + /* Parent process. Save fork() errno and close the reading end of the stdin pipe. */ |