summaryrefslogtreecommitdiffstats
path: root/Tests/CTestCoverageCollectGCOV/TestProject/fake_run_time_gcda.cmake
blob: 26ce2bd76dd38f470aadb2ebf97e6bea1d71b350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
execute_process(COMMAND ${MYEXECUTABLE} RESULT_VARIABLE RESULT)

if(NOT RESULT_VARIABLE STREQUAL "0")
  message("Test failure")
endif()

file(GLOB_RECURSE gcno_files "${TARGETDIR}/*.gcno")

foreach(gcno_file ${gcno_files})
  string(REPLACE ".gcno" ".gcda" gcda_file "${gcno_file}")
  configure_file(${gcno_file} ${gcda_file} COPYONLY)
endforeach()