Skip to content

Commit b3555ce

Browse files
committed
Fixup for "[TSan] Turn on ignore_interceptors_accesses"
Fixup for previous commit: 0f52cc47d62a27311bf4b92d9d25584d7936be11 apple-llvm-split-commit: 365c2d6dc9b80f0817f6cc4d46ffc9240fa5bf8c apple-llvm-split-dir: compiler-rt/
1 parent c3db5d9 commit b3555ce

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

compiler-rt/test/sanitizer_common/lit.common.cfg.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
# On Darwin, we default to `abort_on_error=1`, which would make tests run
3636
# much slower. Let's override this and run lit tests with 'abort_on_error=0'.
3737
default_tool_options += ['abort_on_error=0']
38+
default_tool_options += ['ignore_interceptors_accesses=0']
3839
elif config.android:
3940
# The same as on Darwin, we default to "abort_on_error=1" which slows down
4041
# testing. Also, all existing tests are using "not" instead of "not --crash"

compiler-rt/test/tsan/Unit/lit.site.cfg.py.in

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ if config.host_os == 'Darwin':
2121
config.environment['TSAN_OPTIONS'] += ':ignore_noninstrumented_modules=0'
2222
else:
2323
config.environment['TSAN_OPTIONS'] = 'ignore_noninstrumented_modules=0'
24+
config.environment['TSAN_OPTIONS'] += ':ignore_interceptors_accesses=0'

0 commit comments

Comments
 (0)