Skip to content

Commit 0fd1e3e

Browse files
authored
ASAN and UB workers no longer exclude tests (#314)
Python now skips tests on ASAN, MSAN and UBSAN builds: https://bugs.python.org/issue46633
1 parent 723d574 commit 0fd1e3e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

master/custom/factories.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,6 @@ class UnixAsanBuild(UnixBuild):
236236
# SIGSEGV is ignored on purpose.
237237
compile_environ = {'ASAN_OPTIONS': 'detect_leaks=0:allocator_may_return_null=1:handle_segv=0'}
238238
test_environ = {'ASAN_OPTIONS': 'detect_leaks=0:allocator_may_return_null=1:handle_segv=0'}
239-
# These tests are currently raising false positives or are interfering with the ASAN mechanism,
240-
# so we need to skip them unfortunately.
241-
testFlags = ("-j1 -x test_ctypes test_capi test_crypt test_decimal test_faulthandler test_interpreters")
242239
# Sometimes test_multiprocessing_fork times out after 15 minutes
243240
test_timeout = TEST_TIMEOUT * 2
244241

@@ -311,10 +308,6 @@ class ClangUbsanLinuxBuild(UnixBuild):
311308
]
312309
factory_tags = ["clang", "ubsan", "sanitizer"]
313310

314-
# These tests are currently raising false positives or are interfering with the USAN mechanism,
315-
# so we need to skip them unfortunately.
316-
testFlags = "-j1 -x test_faulthandler test_hashlib test_concurrent_futures test_ctypes"
317-
318311

319312
class ClangUnixInstalledBuild(UnixInstalledBuild):
320313
buildersuffix = ".clang-installed"

0 commit comments

Comments
 (0)