From: Jeff Lucovsky Date: Sun, 22 Dec 2019 19:49:33 +0000 (-0500) Subject: run: flush stdout before using check.sh X-Git-Tag: suricata-6.0.4~338 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca3c85b941e2e909d21d44bbc356da02e1b6f8b3;p=thirdparty%2Fsuricata-verify.git run: flush stdout before using check.sh --- diff --git a/run.py b/run.py index 24951fbaf..a0d2b4ff1 100755 --- a/run.py +++ b/run.py @@ -112,6 +112,7 @@ def pipe_reader(fileobj, output=None, verbose=False): line = line.decode() if output: output.write(line) + output.flush() if verbose: print(line.strip())