LibarchiveCodeCoverage.cmake 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #################################################################
  2. # Adds a build target called "coverage" for code coverage.
  3. #
  4. # This compiles the code using special GCC flags, run the tests,
  5. # and then generates a nice HTML output. This new "coverage" make
  6. # target will only be available if you build using GCC in Debug
  7. # mode. If any of the required programs (lcov and genhtml) were
  8. # not found, a FATAL_ERROR message is printed.
  9. #
  10. # If not already done, this code will set ENABLE_TEST to ON.
  11. #
  12. # To build the code coverage and open it in your browser do this:
  13. #
  14. # mkdir debug
  15. # cd debug
  16. # cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE=ON ..
  17. # make -j4
  18. # make coverage
  19. # xdg-open coverage/index.html
  20. #################################################################
  21. # Find programs we need
  22. FIND_PROGRAM(LCOV_EXECUTABLE lcov DOC "Full path to lcov executable")
  23. FIND_PROGRAM(GENHTML_EXECUTABLE genhtml DOC "Full path to genhtml executable")
  24. MARK_AS_ADVANCED(LCOV_EXECUTABLE GENHTML_EXECUTABLE)
  25. # Check, compiler, build types and programs are available
  26. IF(NOT CMAKE_COMPILER_IS_GNUCC)
  27. MESSAGE(FATAL_ERROR "Coverage can only be built on GCC")
  28. ELSEIF(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
  29. MESSAGE(FATAL_ERROR "Coverage can only be built in Debug mode")
  30. ELSEIF(NOT LCOV_EXECUTABLE)
  31. MESSAGE(FATAL_ERROR "lcov executable not found")
  32. ELSEIF(NOT GENHTML_EXECUTABLE)
  33. MESSAGE(FATAL_ERROR "genhtml executable not found")
  34. ENDIF(NOT CMAKE_COMPILER_IS_GNUCC)
  35. # Enable testing if not already done
  36. SET(ENABLE_TEST ON)
  37. #################################################################
  38. # Set special compiler and linker flags for test coverage
  39. #################################################################
  40. # 0. Enable debug: -g
  41. SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g")
  42. # 1. Disable optimizations: -O0
  43. SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O0")
  44. # 2. Enable all kind of warnings:
  45. SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -W")
  46. # 3. Enable special coverage flag (HINT: --coverage is a synonym for -fprofile-arcs -ftest-coverage)
  47. SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage")
  48. SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --coverage")
  49. SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage")
  50. #################################################################
  51. ADD_CUSTOM_TARGET(coverage
  52. COMMAND ${CMAKE_COMMAND} -E echo "Beginning test coverage. Output is written to coverage.log."
  53. COMMAND ${CMAKE_COMMAND} -E echo "COVERAGE-STEP-1/5: Reset all execution counts to zero"
  54. COMMAND ${LCOV_EXECUTABLE} --directory . --zerocounters > coverage.log 2>&1
  55. COMMAND ${CMAKE_COMMAND} -E echo "COVERAGE-STEP-2/5: Run testrunner"
  56. COMMAND ${CMAKE_CTEST_COMMAND} >> coverage.log 2>&1
  57. COMMAND ${CMAKE_COMMAND} -E echo "COVERAGE-STEP-3/5: Collect coverage data"
  58. COMMAND ${LCOV_EXECUTABLE} --capture --directory . --output-file "./coverage.info" >> coverage.log 2>&1
  59. COMMAND ${CMAKE_COMMAND} -E echo "COVERAGE-STEP-4/5: Generate HTML from coverage data"
  60. COMMAND ${GENHTML_EXECUTABLE} "coverage.info" --title="libarchive-${LIBARCHIVE_VERSION_STRING}" --show-details --legend --output-directory "./coverage" >> coverage.log 2>&1
  61. COMMAND ${CMAKE_COMMAND} -E echo "COVERAGE-STEP-5/5: Open test coverage HTML output in browser: xdg-open ./coverage/index.html"
  62. COMMENT "Runs testrunner and generates coverage output (formats: .info and .html)")