• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# These tests are not instrumented with coverage and don't
2# have coverage rt in the binary.
3
4set(CMAKE_CXX_FLAGS
5  "${LIBFUZZER_FLAGS_BASE} -fno-sanitize=all -fno-sanitize-coverage=edge,trace-cmp,indirect-calls,8bit-counters")
6
7set(UninstrumentedTests
8  UninstrumentedTest
9  )
10
11foreach(Test ${UninstrumentedTests})
12  add_libfuzzer_test(${Test}-Uninstrumented SOURCES ../${Test}.cpp)
13endforeach()
14
15# Propagate value into parent directory
16set(TestBinaries ${TestBinaries} PARENT_SCOPE)
17