mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
test_peg_generator and test_freeze require cpu (#108386)
The test_peg_generator and test_tools.test_freeze tests now require the 'cpu' resource. Skip these tests unless the 'cpu' resource is enabled (it is disabled by default). These tests are no longer skipped if Python is built with ASAN or MSAN sanitizer.
This commit is contained in:
parent
3107b453bc
commit
7a6cc3eb66
3 changed files with 5 additions and 10 deletions
|
@ -7,12 +7,6 @@ from test import support
|
|||
from test.support import import_helper
|
||||
|
||||
|
||||
if support.check_sanitizer(address=True, memory=True):
|
||||
# gh-90791: Skip the test because it is too slow when Python is built
|
||||
# with ASAN/MSAN: between 5 and 20 minutes on GitHub Actions.
|
||||
raise unittest.SkipTest("test too slow on ASAN/MSAN build")
|
||||
|
||||
|
||||
if not support.has_subprocess_support:
|
||||
raise unittest.SkipTest("test module requires subprocess")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue