diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-21 15:12:50 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-21 15:12:50 (GMT) |
commit | 3e56c23e7dffceda8e6a729041fbc25347c67320 (patch) | |
tree | c9ea402395a5dc448b2accf50a93dcddf0554635 /Lib/test/libregrtest | |
parent | 78c13021dbf7ce21d6ebd029ffe45db5c5f0acfb (diff) | |
download | cpython-3e56c23e7dffceda8e6a729041fbc25347c67320.zip cpython-3e56c23e7dffceda8e6a729041fbc25347c67320.tar.gz cpython-3e56c23e7dffceda8e6a729041fbc25347c67320.tar.bz2 |
regrtest: add -u for unbuffered stdout/stderr
Diffstat (limited to 'Lib/test/libregrtest')
-rw-r--r-- | Lib/test/libregrtest/runtest_mp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/runtest_mp.py b/Lib/test/libregrtest/runtest_mp.py index 9604c16..74ac4fa 100644 --- a/Lib/test/libregrtest/runtest_mp.py +++ b/Lib/test/libregrtest/runtest_mp.py @@ -41,7 +41,7 @@ def run_test_in_subprocess(testname, ns): slaveargs = json.dumps(slaveargs) cmd = [sys.executable, *support.args_from_interpreter_flags(), - '-X', 'faulthandler', + '-u', # Unbuffered stdout and stderr '-m', 'test.regrtest', '--slaveargs', slaveargs] if ns.pgo: |