summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2022-01-25 23:14:03 (GMT)
committerGitHub <noreply@github.com>2022-01-25 23:14:03 (GMT)
commita27505345e34d462139f5f8b6b5e7c9a59955150 (patch)
treeb5bb6339a8f6db3ddce80d6e3f6298d31f474f9d /.github/workflows/build.yml
parenta0efc0c1960e2c49e0092694d98395555270914c (diff)
downloadcpython-a27505345e34d462139f5f8b6b5e7c9a59955150.zip
cpython-a27505345e34d462139f5f8b6b5e7c9a59955150.tar.gz
cpython-a27505345e34d462139f5f8b6b5e7c9a59955150.tar.bz2
Add skips to crashing tests under sanitizers instead of manually skipping them (GH-30897)
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d6af174..5d36dff 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -311,4 +311,7 @@ jobs:
#
# Skip multiprocessing and concurrent.futures tests which are affected by
# bpo-45200 bug: libasan dead lock in pthread_create().
- run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu -x test_ctypes test_crypt test_decimal test_faulthandler test_interpreters test___all__ test_idle test_tix test_tk test_ttk_guionly test_ttk_textonly test_multiprocessing_fork test_multiprocessing_forkserver test_multiprocessing_spawn test_tools test_peg_generator test_concurrent_futures"
+ #
+ # 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"