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