diff options
author | Victor Stinner <vstinner@python.org> | 2022-03-01 14:44:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 14:44:08 (GMT) |
commit | 9204bb72a2da5885facc747e63d2bd2d654606fe (patch) | |
tree | c23150281ded8586447d39075a083ecfa5ad59f4 /.github/workflows | |
parent | 0cc63641859b2f60ea65bb7c0b6d1cfcec1e2f1a (diff) | |
download | cpython-9204bb72a2da5885facc747e63d2bd2d654606fe.zip cpython-9204bb72a2da5885facc747e63d2bd2d654606fe.tar.gz cpython-9204bb72a2da5885facc747e63d2bd2d654606fe.tar.bz2 |
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.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d36dff..f6df743 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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" |