From: Michael Jeanson Date: Thu, 14 Mar 2019 15:39:59 +0000 (-0400) Subject: tap-driver.sh: flush stdout after each test result X-Git-Tag: v2.9.5~10 X-Git-Url: http://git.liburcu.org/?p=lttng-ust.git;a=commitdiff_plain;h=58098dd6cf3a40c137d91cca6c2493b4e18a34f6 tap-driver.sh: flush stdout after each test result This is useful in a CI system where stdout is fully buffered and you look at the console output to see which test is hanging. Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/config/tap-driver.sh b/config/tap-driver.sh index 4254e2b3..12742cae 100755 --- a/config/tap-driver.sh +++ b/config/tap-driver.sh @@ -273,6 +273,9 @@ function report(result, details) msg = msg " " details # Output on console might be colorized. print decorate_result(result) msg + # Flush stdout after each test result, this is useful when stdout + # is buffered, for example in a CI system. + fflush() # Log the result in the log file too, to help debugging (this is # especially true when said result is a TAP error or "Bail out!"). print result msg | "cat >&3";