diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-07-20 12:52:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-20 12:52:33 +0200 |
commit | 643ba06d4d4373d2d3f8936f71f777f627fad5f6 (patch) | |
tree | 5db8248eafca0c672f9aa0a7a01d58ac7629a8b4 | |
parent | 7f66fdb54d6702d23c99e7aa81b6caec7c5fda7c (diff) | |
download | rneovim-643ba06d4d4373d2d3f8936f71f777f627fad5f6.tar.gz rneovim-643ba06d4d4373d2d3f8936f71f777f627fad5f6.tar.bz2 rneovim-643ba06d4d4373d2d3f8936f71f777f627fad5f6.zip |
test: shell-test.c: flush stdout for REP #10548
fix #10534
-rw-r--r-- | test/functional/fixtures/shell-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 $ "); |