From 2e5cd21211aa2e142cbd890993cb07c514dd7836 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Aguerre?= Date: Mon, 20 Apr 2015 14:45:06 +0200 Subject: [PATCH] fix: no buffering for test subprocesses --- bin/runTests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/runTests.py b/bin/runTests.py index 7384e8554..5d3939f9a 100644 --- a/bin/runTests.py +++ b/bin/runTests.py @@ -70,7 +70,7 @@ __testSubDir = "bin/salome/test" # Both display process stdout&stderr to console and capture them to variables def __runTest(command, workdir): - p = subprocess.Popen(command, cwd=workdir, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=1) + p = subprocess.Popen(command, cwd=workdir, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0) stdout = [] stderr = [] -- 2.39.2