Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ASAN and UB workers no longer exclude tests #314

Merged
merged 1 commit into from
Mar 2, 2022
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
7 changes: 0 additions & 7 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,6 @@ class UnixAsanBuild(UnixBuild):
# SIGSEGV is ignored on purpose.
compile_environ = {'ASAN_OPTIONS': 'detect_leaks=0:allocator_may_return_null=1:handle_segv=0'}
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")
# Sometimes test_multiprocessing_fork times out after 15 minutes
test_timeout = TEST_TIMEOUT * 2

Expand Down Expand Up @@ -311,10 +308,6 @@ class ClangUbsanLinuxBuild(UnixBuild):
]
factory_tags = ["clang", "ubsan", "sanitizer"]

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


class ClangUnixInstalledBuild(UnixInstalledBuild):
buildersuffix = ".clang-installed"
Expand Down