aboutsummaryrefslogtreecommitdiff
path: root/test/util/test_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/util/test_runner.py')
-rwxr-xr-xtest/util/test_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/util/test_runner.py b/test/util/test_runner.py
index 03db05c563..ea3626fa65 100755
--- a/test/util/test_runner.py
+++ b/test/util/test_runner.py
@@ -107,7 +107,7 @@ def bctest(testDir, testObj, buildenv):
raise Exception
# Run the test
- proc = subprocess.Popen(execrun, stdin=stdinCfg, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
+ proc = subprocess.Popen(execrun, stdin=stdinCfg, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
try:
outs = proc.communicate(input=inputData)
except OSError: