mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
gh-82616: Add process_group support to subprocess.Popen (#23930)
One more thing that can help prevent people from using `preexec_fn`. Also adds conditional skips to two tests exposing ASAN flakiness on the Ubuntu 20.04 Address Sanitizer Github CI system. When that build is run on more modern systems the "problem" does not show up. It seems ASAN implementation related. Co-authored-by: Zackery Spytz <zspytz@gmail.com> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
49fda0cc51
commit
f6dd14c653
9 changed files with 73 additions and 28 deletions
|
@ -15,6 +15,9 @@ from test.support import os_helper
|
|||
if sys.platform != 'win32':
|
||||
from asyncio import unix_events
|
||||
|
||||
if support.check_sanitizer(address=True):
|
||||
raise unittest.SkipTest("Exposes ASAN flakiness in GitHub CI")
|
||||
|
||||
# Program blocking
|
||||
PROGRAM_BLOCKED = [sys.executable, '-c', 'import time; time.sleep(3600)']
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue