We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b62524 commit 372ecfeCopy full SHA for 372ecfe
1 file changed
tests/run-tests.py
@@ -955,8 +955,8 @@ def run_one_test(test_file):
955
cwd=os.path.dirname(test_file),
956
stderr=subprocess.STDOUT,
957
)
958
- except subprocess.CalledProcessError:
959
- output_expected = b"CPYTHON3 CRASH"
+ except subprocess.CalledProcessError as er:
+ output_expected = b"CPYTHON3 CRASH:\n" + er.output
960
961
# Canonical form for all host platforms is to use \n for end-of-line.
962
output_expected = output_expected.replace(b"\r\n", b"\n")
0 commit comments