• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# These tests are not instrumented with coverage.
2
3set(CMAKE_CXX_FLAGS_RELEASE
4  "${LIBFUZZER_FLAGS_BASE} -O0 -fno-sanitize=all")
5
6foreach(Test ${UninstrumentedTests})
7  add_executable(LLVMFuzzer-${Test}-Uninstrumented
8    ../${Test}.cpp
9    )
10  target_link_libraries(LLVMFuzzer-${Test}-Uninstrumented
11    LLVMFuzzer
12    )
13endforeach()
14
15