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