Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,10 @@ class UnixAsanBuild(UnixBuild):
buildersuffix = ".asan"
configureFlags = ["--without-pymalloc", "--with-address-sanitizer"]
factory_tags = ["asan", "sanitizer"]
compile_environ = {'ASAN_OPTIONS': 'detect_leaks=0:allocator_may_return_null=1'}
test_environ = {'ASAN_OPTIONS': 'detect_leaks=0:allocator_may_return_null=1'}
# See https://bugs.python.org/issue42985 for more context on why
# SIGSEGV is ignored on purpose.
compile_environ = {'ASAN_OPTIONS': 'detect_leaks=0:allocator_may_return_null=1:handle_segv=0'}
Comment thread
pablogsal marked this conversation as resolved.
test_environ = {'ASAN_OPTIONS': 'detect_leaks=0:allocator_may_return_null=1:handle_segv=0'}
# These tests are currently raising false positives or are interfering with the ASAN mechanism,
# so we need to skip them unfortunately.
testFlags = ("-j1 -x test_ctypes test_capi test_crypt test_decimal test_faulthandler test_interpreters")
Expand Down