From 643ba06d4d4373d2d3f8936f71f777f627fad5f6 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 20 Jul 2019 12:52:33 +0200 Subject: [PATCH] test: shell-test.c: flush stdout for REP #10548 fix #10534 --- test/functional/fixtures/shell-test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/fixtures/shell-test.c b/test/functional/fixtures/shell-test.c index 1ff1598e2b..f453ea69d9 100644 --- a/test/functional/fixtures/shell-test.c +++ b/test/functional/fixtures/shell-test.c @@ -121,6 +121,7 @@ int main(int argc, char **argv) fprintf(stderr, "Unknown first argument: %s\n", argv[1]); return 3; } + wait(); // Flush stdout. return 0; } else if (argc == 1) { fprintf(stderr, "ready $ ");