diff options
author | Rodney Dawes <rodney.dawes@canonical.com> | 2017-02-07 13:31:18 -0500 |
---|---|---|
committer | Rodney Dawes <rodney.dawes@canonical.com> | 2017-02-07 13:31:18 -0500 |
commit | 703381ce12b79211c64a8ded04222d277f25cb6e (patch) | |
tree | 1efdf525b921d858c46699601a8d8b937f06e545 /tests/integration | |
parent | 907fc24ba24962c0f30a9efe955dd5cb916c5492 (diff) | |
download | ayatana-indicator-display-703381ce12b79211c64a8ded04222d277f25cb6e.tar.gz ayatana-indicator-display-703381ce12b79211c64a8ded04222d277f25cb6e.tar.bz2 ayatana-indicator-display-703381ce12b79211c64a8ded04222d277f25cb6e.zip |
Make coverage reporting work.
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/integration/CMakeLists.txt b/tests/integration/CMakeLists.txt index 9ec6688..42d710e 100644 --- a/tests/integration/CMakeLists.txt +++ b/tests/integration/CMakeLists.txt @@ -16,9 +16,15 @@ set(TEST_LINK_LIBRARIES function(add_qt_test_by_name name) set(TEST_NAME ${name}) + set(COVERAGE_TEST_TARGETS ${COVERAGE_TEST_TARGETS} ${TEST_NAME} PARENT_SCOPE) add_executable (${TEST_NAME} ${TEST_NAME}.cpp) add_test(${TEST_NAME} ${TEST_NAME}) set_property(TEST ${TEST_NAME} APPEND PROPERTY ENVIRONMENT ${CTEST_ENVIRONMENT}) target_link_libraries(${TEST_NAME} ${SERVICE_LINK_LIBRARIES} ${QT_LINK_LIBRARIES} ${TEST_LINK_LIBRARIES} ${THREAD_LINK_LIBRARIES}) endfunction() add_qt_test_by_name(usb-manager-test) + +set(COVERAGE_TEST_TARGETS + ${COVERAGE_TEST_TARGETS} + PARENT_SCOPE +) |