File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
compiler-rt/test/sanitizer_common Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ set(SANITIZER_COMMON_TESTSUITES)
7
7
# FIXME(dliew): We should switch to COMPILER_RT_SANITIZERS_TO_BUILD instead of
8
8
# the hard coded `SUPPORTED_TOOLS_INIT` list once we know that the other
9
9
# sanitizers work.
10
- set (SUPPORTED_TOOLS_INIT asan lsan hwasan msan radsan tsan ubsan )
10
+ set (SUPPORTED_TOOLS_INIT asan lsan hwasan msan tsan ubsan )
11
11
set (SUPPORTED_TOOLS )
12
12
foreach (SANITIZER_TOOL ${SUPPORTED_TOOLS_INIT} )
13
13
string (TOUPPER ${SANITIZER_TOOL} SANITIZER_TOOL_UPPER )
Original file line number Diff line number Diff line change 18
18
tool_options = "HWASAN_OPTIONS"
19
19
if not config .has_lld :
20
20
config .unsupported = True
21
- elif config .tool_name == "radsan" :
22
- tool_cflags = ["-fsanitize=realtime" ]
23
- tool_options = "RADSAN_OPTIONS"
24
21
elif config .tool_name == "tsan" :
25
22
tool_cflags = ["-fsanitize=thread" ]
26
23
tool_options = "TSAN_OPTIONS"
You can’t perform that action at this time.
0 commit comments