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