mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632)
Skip tests on ASAN and/or MSAN builds: * multiprocessing tests * test___all__ * test_concurrent_futures * test_decimal * test_peg_generator * test_tools The ASAN job of GitHub Actions no longer excludes these tests.
This commit is contained in:
parent
0cc6364185
commit
9204bb72a2
7 changed files with 40 additions and 24 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -306,12 +306,4 @@ jobs:
|
|||
- name: Display build info
|
||||
run: make pythoninfo
|
||||
- name: Tests
|
||||
# Skip test_tools test_peg_generator test_concurrent_futures because
|
||||
# there are too slow: between 5 and 20 minutes on this CI.
|
||||
#
|
||||
# Skip multiprocessing and concurrent.futures tests which are affected by
|
||||
# bpo-45200 bug: libasan dead lock in pthread_create().
|
||||
#
|
||||
# test___all__ is skipped because importing some modules directly can trigger
|
||||
# known problems with ASAN (like tk or crypt).
|
||||
run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu -x test___all__ test_multiprocessing_fork test_multiprocessing_forkserver test_multiprocessing_spawn test_tools test_peg_generator test_concurrent_futures"
|
||||
run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue