Skip to content

Commit

Permalink
Temporarily disable sanitizers tests on Linux
Browse files Browse the repository at this point in the history
As recent kernel update broke them.
Cf. google/sanitizers#837
Tracked in https://bugs.swift.org/browse/SR-6257
  • Loading branch information
George Karpenkov committed Nov 1, 2017
1 parent b2d5e3f commit f314e74
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/lit.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -922,10 +922,11 @@ def check_runtime_feature(name):
return

check_runtime_feature('profile')
check_runtime_feature('asan')
check_runtime_feature('ubsan')
check_runtime_feature('tsan')
check_runtime_feature('safestack')
if config.target_sdk_name != "linux":
check_runtime_feature('asan')
check_runtime_feature('tsan')

if not getattr(config, 'target_run_simple_swift', None):
config.target_run_simple_swift = (
Expand Down

0 comments on commit f314e74

Please sign in to comment.