From: Matthias Maier Date: Fri, 18 Oct 2013 09:27:25 +0000 (+0000) Subject: Bugfix: Do not list pure header files in CTEST_EXTRA_COVERAGE_GLOB X-Git-Tag: v8.1.0~570^2~25 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebf719802639f566fdb235c6cbbc398ec4b8150a;p=dealii.git Bugfix: Do not list pure header files in CTEST_EXTRA_COVERAGE_GLOB git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@31292 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/CTestConfig.cmake b/deal.II/CTestConfig.cmake index 30f387c19d..78157805d8 100644 --- a/deal.II/CTestConfig.cmake +++ b/deal.II/CTestConfig.cmake @@ -38,8 +38,8 @@ SET(CTEST_CUSTOM_ERROR_POST_CONTEXT 20) # SET(CTEST_EXTRA_COVERAGE_GLOB - # already relative to source dir: - include/**/*.h + # These files should have executable lines and therefore coverage: + include/**/*.template.h source/**/*.cc )