mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
gh-110367: Enhance regrtest -jN --verbose3 (#110368)
When using worker processes (-jN) with --verbose3 option, regrtest can now display the worker output even if a worker process does crash. Previously, sys.stdout and sys.stderr were replaced and so the worker output was lost on a crash.
This commit is contained in:
parent
313aa861ce
commit
6592976061
4 changed files with 52 additions and 3 deletions
|
@ -35,7 +35,7 @@ def expected_traceback(lineno1, lineno2, header, min_count=1):
|
|||
return '^' + regex + '$'
|
||||
|
||||
def skip_segfault_on_android(test):
|
||||
# Issue #32138: Raising SIGSEGV on Android may not cause a crash.
|
||||
# gh-76319: Raising SIGSEGV on Android may not cause a crash.
|
||||
return unittest.skipIf(is_android,
|
||||
'raising SIGSEGV on Android is unreliable')(test)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue