testcocoon.prf 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #
  2. # Tested with TestCocoon 1.6.14
  3. #
  4. load(resolve_target)
  5. # Retrieve the target basename
  6. TARGET_BASENAME = $$basename(QMAKE_RESOLVED_TARGET)
  7. # Configure testcocoon for a full instrumentation - excluding the moc, ui and qrc files from the instrumentation
  8. # --cs-output defines the name to give to the execution report (.csexe).
  9. TESTCOCOON_COVERAGE_OPTIONS = \
  10. --cs-qt4 \
  11. --cs-exclude-file-regex=\'(^|[/\\\\])(qrc|moc)_.*\\.cpp\$\$\' \
  12. --cs-exclude-file-regex=\'.*\\.moc\$\$\' \
  13. --cs-exclude-file-regex=\'.*\\.g\$\$\' \
  14. --cs-exclude-file-regex=\'.*\\.h\$\$\' \
  15. --cs-output=\'$$TARGET_BASENAME\' # name of the csexe file (execution report)
  16. # The .csmes file should be placed alongside the .so or binary.
  17. # Unfortunately, testcocoon has no option to specify the output directory,
  18. # so we must move it into place if a custom destdir was used.
  19. # We don't move applications' csmes because some qt applications (tools, examples)
  20. # are using DESTDIR in some cases but always alongside target.path, so the binary
  21. # is built directly in target.path and there is no need to move the csmes.
  22. !isEmpty(DESTDIR):contains(TEMPLATE, lib) {
  23. !isEmpty(QMAKE_POST_LINK):QMAKE_POST_LINK = $$escape_expand(\\n\\t)$$QMAKE_POST_LINK
  24. QMAKE_POST_LINK = -$(MOVE) $${TARGET_BASENAME}.csmes $$shell_path($${QMAKE_RESOLVED_TARGET}.csmes)$$QMAKE_POST_LINK
  25. }
  26. QMAKE_CLEAN += *.csexe *.csmes
  27. # The compiler/linker is replaced by the coveragescanner which is named after the name of the
  28. # compiler/linker preceded by cs (ie gcc is replaced by csgcc).
  29. # Testcocoon options defined in TESTCOCOON_COVERAGE_OPTIONS are added as argument to the coveragescanner (ie csgcc).
  30. # In practice they are added as compiler/linker flags.
  31. *-g++* {
  32. QMAKE_CXX ~= s/(\\S*g\\+\\+)/cs\\1/
  33. QMAKE_CC ~= s/(\\S*gcc)/cs\\1/
  34. QMAKE_LINK ~= s/(\\S*g\\+\\+|\\S*gcc)/cs\\1/
  35. QMAKE_AR ~= s/(\\S*ar)/cs\\1/
  36. QMAKE_AR += $$TESTCOCOON_COVERAGE_OPTIONS
  37. } else {
  38. error("Non-gcc qmake specs not supported by TestCocoon integration yet")
  39. }
  40. QMAKE_CFLAGS += $$TESTCOCOON_COVERAGE_OPTIONS
  41. QMAKE_CXXFLAGS += $$TESTCOCOON_COVERAGE_OPTIONS
  42. QMAKE_LFLAGS += $$TESTCOCOON_COVERAGE_OPTIONS
  43. unix {
  44. QMAKE_LFLAGS += --cs-libgen=-fPIC
  45. }
  46. unset(TARGET_BASENAME)
  47. unset(TESTCOCOON_COVERAGE_OPTIONS)