Skip to content

Commit 288836a

Browse files
committed
PR: Remove too early inclusion of sanitizer common lit tests
1 parent 3fa70e6 commit 288836a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

compiler-rt/test/sanitizer_common/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set(SANITIZER_COMMON_TESTSUITES)
77
# FIXME(dliew): We should switch to COMPILER_RT_SANITIZERS_TO_BUILD instead of
88
# the hard coded `SUPPORTED_TOOLS_INIT` list once we know that the other
99
# 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)
1111
set(SUPPORTED_TOOLS)
1212
foreach(SANITIZER_TOOL ${SUPPORTED_TOOLS_INIT})
1313
string(TOUPPER ${SANITIZER_TOOL} SANITIZER_TOOL_UPPER)

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
tool_options = "HWASAN_OPTIONS"
1919
if not config.has_lld:
2020
config.unsupported = True
21-
elif config.tool_name == "radsan":
22-
tool_cflags = ["-fsanitize=realtime"]
23-
tool_options = "RADSAN_OPTIONS"
2421
elif config.tool_name == "tsan":
2522
tool_cflags = ["-fsanitize=thread"]
2623
tool_options = "TSAN_OPTIONS"

0 commit comments

Comments
 (0)