Disable stack_trace_compressor_fuzzer.

Should hopefully fix the remainder of the buildbot issues. Just disabling this
for now with a comment that I'm working on it. Can actually fix the real problem
when I'm at a real computer.

llvm-svn: 369079
This commit is contained in:
Mitch Phillips 2019-08-16 02:03:33 +00:00
parent a079a42708
commit effc28c139
1 changed files with 17 additions and 13 deletions

View File

@ -100,19 +100,23 @@ if (COMPILER_RT_HAS_GWP_ASAN)
CFLAGS ${GWP_ASAN_CFLAGS} ${SANITIZER_COMMON_CFLAGS})
# Build the stack trace compressor fuzzer.
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
add_executable(stack_trace_compressor_fuzzer
stack_trace_compressor_fuzzer.cpp
${GWP_ASAN_SOURCES}
${GWP_ASAN_HEADERS})
set_target_properties(stack_trace_compressor_fuzzer
PROPERTIES FOLDER "Fuzzers")
target_compile_options(stack_trace_compressor_fuzzer
PRIVATE -fsanitize=fuzzer-no-link)
set_target_properties(
stack_trace_compressor_fuzzer PROPERTIES LINK_FLAGS -fsanitize=fuzzer)
add_dependencies(gwp_asan stack_trace_compressor_fuzzer)
endif()
# Currently commented out in order to give me some time to figure out what the
# issue is. Rolling back would require rolling back 5 CL's, so this should be
# okay until I can get to a real computer and actually fix it tomorrow.
# - hctim
#if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
# add_executable(stack_trace_compressor_fuzzer
# stack_trace_compressor_fuzzer.cpp
# ${GWP_ASAN_SOURCES}
# ${GWP_ASAN_HEADERS})
# set_target_properties(stack_trace_compressor_fuzzer
# PROPERTIES FOLDER "Fuzzers")
# target_compile_options(stack_trace_compressor_fuzzer
# PRIVATE -fsanitize=fuzzer-no-link)
# set_target_properties(
# stack_trace_compressor_fuzzer PROPERTIES LINK_FLAGS -fsanitize=fuzzer)
# add_dependencies(gwp_asan stack_trace_compressor_fuzzer)
#endif()
endif()
if(COMPILER_RT_INCLUDE_TESTS)