[Cmake-commits] CMake branch, next, updated. v3.3.2-3089-gbb263cf
Ben Boeckel
ben.boeckel at kitware.com
Fri Sep 18 13:25:54 EDT 2015
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via bb263cf5190cc181944ad126fafbfb4b3cd9ffdf (commit)
via 26a027a34aec37d0c9baa9e043bb3fb2118a8e5e (commit)
via f020f9f42183a94cdcd33fb14e9fc8d5eb721964 (commit)
via c3072e67ac04f7c1a21c194dd1e4abe530c537ec (commit)
via 6200814c97918824b093c4ec6b47183f1f341c01 (commit)
from 9c8534cd68bdfa1e3f479e3bd9c8681a26a05a4d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=bb263cf5190cc181944ad126fafbfb4b3cd9ffdf
commit bb263cf5190cc181944ad126fafbfb4b3cd9ffdf
Merge: 9c8534c 26a027a
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Fri Sep 18 13:25:52 2015 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Sep 18 13:25:52 2015 -0400
Merge topic 'ctest-custom-output-size-more-docs' into next
26a027a3 Help: document CTEST_CUSTOM_* variables
f020f9f4 ctest_read_custom_files: mention that ctest does this automatically
c3072e67 CTEST_CUSTOM_*: treat variables as lists
6200814c CTestCoverageCollectGCOV: replace tabulators
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=26a027a34aec37d0c9baa9e043bb3fb2118a8e5e
commit 26a027a34aec37d0c9baa9e043bb3fb2118a8e5e
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu Sep 17 10:57:46 2015 -0400
Commit: Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Fri Sep 18 13:25:03 2015 -0400
Help: document CTEST_CUSTOM_* variables
diff --git a/Help/manual/cmake-variables.7.rst b/Help/manual/cmake-variables.7.rst
index 660d544..991cd55 100644
--- a/Help/manual/cmake-variables.7.rst
+++ b/Help/manual/cmake-variables.7.rst
@@ -374,8 +374,23 @@ Variables for CTest
/variable/CTEST_COVERAGE_COMMAND
/variable/CTEST_COVERAGE_EXTRA_FLAGS
/variable/CTEST_CURL_OPTIONS
+ /variable/CTEST_CUSTOM_COVERAGE_EXCLUDE
+ /variable/CTEST_CUSTOM_ERROR_EXCEPTION
+ /variable/CTEST_CUSTOM_ERROR_MATCH
+ /variable/CTEST_CUSTOM_ERROR_POST_CONTEXT
+ /variable/CTEST_CUSTOM_ERROR_PRE_CONTEXT
/variable/CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE
+ /variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS
+ /variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS
/variable/CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE
+ /variable/CTEST_CUSTOM_MEMCHECK_IGNORE
+ /variable/CTEST_CUSTOM_POST_MEMCHECK
+ /variable/CTEST_CUSTOM_POST_TEST
+ /variable/CTEST_CUSTOM_PRE_MEMCHECK
+ /variable/CTEST_CUSTOM_PRE_TEST
+ /variable/CTEST_CUSTOM_TEST_IGNORE
+ /variable/CTEST_CUSTOM_WARNING_EXCEPTION
+ /variable/CTEST_CUSTOM_WARNING_MATCH
/variable/CTEST_CVS_CHECKOUT
/variable/CTEST_CVS_COMMAND
/variable/CTEST_CVS_UPDATE_OPTIONS
@@ -385,6 +400,7 @@ Variables for CTest
/variable/CTEST_DROP_SITE_CDASH
/variable/CTEST_DROP_SITE_PASSWORD
/variable/CTEST_DROP_SITE_USER
+ /variable/CTEST_EXTRA_COVERAGE_GLOB
/variable/CTEST_GIT_COMMAND
/variable/CTEST_GIT_UPDATE_CUSTOM
/variable/CTEST_GIT_UPDATE_OPTIONS
diff --git a/Help/variable/CTEST_CUSTOM_COVERAGE_EXCLUDE.rst b/Help/variable/CTEST_CUSTOM_COVERAGE_EXCLUDE.rst
new file mode 100644
index 0000000..946114c
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_COVERAGE_EXCLUDE.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_COVERAGE_EXCLUDE
+-----------------------------
+
+A list of regular expressions which will be used to exclude files by their
+path from coverage output by the :command:`ctest_coverage` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_COVERAGE_EXCLUDE
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_ERROR_EXCEPTION.rst b/Help/variable/CTEST_CUSTOM_ERROR_EXCEPTION.rst
new file mode 100644
index 0000000..cfb1093
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_ERROR_EXCEPTION.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_ERROR_EXCEPTION
+----------------------------
+
+A list of regular expressions which will be used to exclude when detecting
+error messages in build outputs by the :command:`ctest_test` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_ERROR_EXCEPTION
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_ERROR_MATCH.rst b/Help/variable/CTEST_CUSTOM_ERROR_MATCH.rst
new file mode 100644
index 0000000..dbb9c19
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_ERROR_MATCH.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_ERROR_MATCH
+------------------------
+
+A list of regular expressions which will be used to detect error messages in
+build outputs by the :command:`ctest_test` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_ERROR_MATCH
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_ERROR_POST_CONTEXT.rst b/Help/variable/CTEST_CUSTOM_ERROR_POST_CONTEXT.rst
new file mode 100644
index 0000000..f4ee2e8
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_ERROR_POST_CONTEXT.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_ERROR_POST_CONTEXT
+-------------------------------
+
+The number of lines to include as context which follow an error message by the
+:command:`ctest_test` command. The default is 10.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_ERROR_POST_CONTEXT
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_ERROR_PRE_CONTEXT.rst b/Help/variable/CTEST_CUSTOM_ERROR_PRE_CONTEXT.rst
new file mode 100644
index 0000000..b1b3e0d
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_ERROR_PRE_CONTEXT.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_ERROR_PRE_CONTEXT
+------------------------------
+
+The number of lines to include as context which precede an error message by
+the :command:`ctest_test` command. The default is 10.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_ERROR_PRE_CONTEXT
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE.rst b/Help/variable/CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE.rst
index 1b4bb01..524be5d 100644
--- a/Help/variable/CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE.rst
+++ b/Help/variable/CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE.rst
@@ -1,6 +1,9 @@
CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE
--------------------------------------------
-Specify the maximum amount of output from a failed test that will
-be collected by the :command:`ctest_test` command. If not set,
-the default is 300 KiB.
+When saving a failing test's output, this is the maximum size, in bytes, that
+will be collected by the :command:`ctest_test` command. Defaults to 307200
+(300 KiB).
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS.rst b/Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS.rst
new file mode 100644
index 0000000..3213d34
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS.rst
@@ -0,0 +1,9 @@
+CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS
+-------------------------------------
+
+The maximum number of errors in a single build step which will be detected.
+After this, the :command:`ctest_test` command will truncate the output.
+Defaults to 50.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS.rst b/Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS.rst
new file mode 100644
index 0000000..67f0f74
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS.rst
@@ -0,0 +1,9 @@
+CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS
+---------------------------------------
+
+The maximum number of warnings in a single build step which will be detected.
+After this, the :command:`ctest_test` command will truncate the output.
+Defaults to 50.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE.rst b/Help/variable/CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE.rst
index 168e84e..fdda3ce 100644
--- a/Help/variable/CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE.rst
+++ b/Help/variable/CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE.rst
@@ -1,6 +1,9 @@
CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE
--------------------------------------------
-Specify the maximum amount of output from a passed test that will
-be collected by the :command:`ctest_test` command. If not set,
-the default is 1 KiB.
+When saving a passing test's output, this is the maximum size, in bytes, that
+will be collected by the :command:`ctest_test` command. Defaults to 1024
+(1 KiB).
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_MEMCHECK_IGNORE.rst b/Help/variable/CTEST_CUSTOM_MEMCHECK_IGNORE.rst
new file mode 100644
index 0000000..fb97d81
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_MEMCHECK_IGNORE.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_MEMCHECK_IGNORE
+----------------------------
+
+A list of regular expressions to use to exclude tests during the
+:command:`ctest_memcheck` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_MEMCHECK_IGNORE
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_POST_MEMCHECK.rst b/Help/variable/CTEST_CUSTOM_POST_MEMCHECK.rst
new file mode 100644
index 0000000..0f60f4e
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_POST_MEMCHECK.rst
@@ -0,0 +1,7 @@
+CTEST_CUSTOM_POST_MEMCHECK
+--------------------------
+
+A list of commands to run at the end of the :command:`ctest_memcheck` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_POST_MEMCHECK
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_POST_TEST.rst b/Help/variable/CTEST_CUSTOM_POST_TEST.rst
new file mode 100644
index 0000000..8f44146
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_POST_TEST.rst
@@ -0,0 +1,7 @@
+CTEST_CUSTOM_POST_TEST
+----------------------
+
+A list of commands to run at the end of the :command:`ctest_test` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_POST_TEST
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_PRE_MEMCHECK.rst b/Help/variable/CTEST_CUSTOM_PRE_MEMCHECK.rst
new file mode 100644
index 0000000..6ec82e3
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_PRE_MEMCHECK.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_PRE_MEMCHECK
+-------------------------
+
+A list of commands to run at the start of the :command:`ctest_memcheck`
+command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_PRE_MEMCHECK
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_PRE_TEST.rst b/Help/variable/CTEST_CUSTOM_PRE_TEST.rst
new file mode 100644
index 0000000..f9863a4
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_PRE_TEST.rst
@@ -0,0 +1,7 @@
+CTEST_CUSTOM_PRE_TEST
+----------------------
+
+A list of commands to run at the start of the :command:`ctest_test` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_PRE_TEST
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_TEST_IGNORE.rst b/Help/variable/CTEST_CUSTOM_TEST_IGNORE.rst
new file mode 100644
index 0000000..75d5de3
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_TEST_IGNORE.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_TEST_IGNORE
+------------------------
+
+A list of regular expressions to use to exclude tests during the
+:command:`ctest_test` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_TEST_IGNORE
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_WARNING_EXCEPTION.rst b/Help/variable/CTEST_CUSTOM_WARNING_EXCEPTION.rst
new file mode 100644
index 0000000..15e0134
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_WARNING_EXCEPTION.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_WARNING_EXCEPTION
+------------------------------
+
+A list of regular expressions which will be used to exclude when detecting
+warning messages in build outputs by the :command:`ctest_test` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_WARNING_EXCEPTION
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_WARNING_MATCH.rst b/Help/variable/CTEST_CUSTOM_WARNING_MATCH.rst
new file mode 100644
index 0000000..aa2de3b
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_WARNING_MATCH.rst
@@ -0,0 +1,8 @@
+CTEST_CUSTOM_WARNING_MATCH
+--------------------------
+
+A list of regular expressions which will be used to detect warning messages in
+build outputs by the :command:`ctest_test` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_CUSTOM_WARNING_EXCEPTION
+.. include:: CTEST_CUSTOM_XXX.txt
diff --git a/Help/variable/CTEST_CUSTOM_XXX.txt b/Help/variable/CTEST_CUSTOM_XXX.txt
new file mode 100644
index 0000000..3000f50
--- /dev/null
+++ b/Help/variable/CTEST_CUSTOM_XXX.txt
@@ -0,0 +1,3 @@
+The ``CTEST_CUSTOM_XXX`` variable is initialized by :manual:`ctest(1)`, but may
+be edited in a ``CTestCustom`` file. See :command:`ctest_read_custom_files`
+documentation.
diff --git a/Help/variable/CTEST_EXTRA_COVERAGE_GLOB.rst b/Help/variable/CTEST_EXTRA_COVERAGE_GLOB.rst
new file mode 100644
index 0000000..0f0d935
--- /dev/null
+++ b/Help/variable/CTEST_EXTRA_COVERAGE_GLOB.rst
@@ -0,0 +1,8 @@
+CTEST_EXTRA_COVERAGE_GLOB
+-------------------------
+
+A list of regular expressions which will be used to find files which should be
+covered by the :command:`ctest_coverage` command.
+
+.. |CTEST_CUSTOM_XXX| replace:: CTEST_EXTRA_COVERAGE_GLOB
+.. include:: CTEST_CUSTOM_XXX.txt
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f020f9f42183a94cdcd33fb14e9fc8d5eb721964
commit f020f9f42183a94cdcd33fb14e9fc8d5eb721964
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu Sep 17 10:52:54 2015 -0400
Commit: Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Thu Sep 17 13:09:44 2015 -0400
ctest_read_custom_files: mention that ctest does this automatically
diff --git a/Help/command/ctest_read_custom_files.rst b/Help/command/ctest_read_custom_files.rst
index 0bc57cd..cf8e17a 100644
--- a/Help/command/ctest_read_custom_files.rst
+++ b/Help/command/ctest_read_custom_files.rst
@@ -9,3 +9,6 @@ read CTestCustom files.
Read all the CTestCustom.ctest or CTestCustom.cmake files from the
given directory.
+
+By default, invoking :manual:`ctest(1)` without a script will read custom
+files from the binary directory.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c3072e67ac04f7c1a21c194dd1e4abe530c537ec
commit c3072e67ac04f7c1a21c194dd1e4abe530c537ec
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu Sep 17 10:52:17 2015 -0400
Commit: Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Thu Sep 17 13:09:44 2015 -0400
CTEST_CUSTOM_*: treat variables as lists
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in
index d3cff51..2adf317 100644
--- a/CTestCustom.cmake.in
+++ b/CTestCustom.cmake.in
@@ -1,9 +1,7 @@
-set(CTEST_CUSTOM_ERROR_MATCH
- ${CTEST_CUSTOM_ERROR_MATCH}
+list(APPEND CTEST_CUSTOM_ERROR_MATCH
"ERROR:")
-set(CTEST_CUSTOM_WARNING_EXCEPTION
- ${CTEST_CUSTOM_WARNING_EXCEPTION}
+list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION
"xtree.[0-9]+. : warning C4702: unreachable code"
"warning LNK4221"
"warning LNK4204" # Occurs by race condition with objects in small libs
@@ -84,22 +82,18 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION
)
if(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
- set(CTEST_CUSTOM_COVERAGE_EXCLUDE
- ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
+ list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE
"XCode"
)
endif ()
if(NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
- set(CTEST_CUSTOM_COVERAGE_EXCLUDE
- ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
+ list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE
"Kdevelop"
)
endif ()
-set(CTEST_CUSTOM_COVERAGE_EXCLUDE
- ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
-
+list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE
# Exclude kwsys files from coverage results. They are reported
# (with better coverage results) on kwsys dashboards...
"/Source/(cm|kw)sys/"
diff --git a/Modules/CTestCoverageCollectGCOV.cmake b/Modules/CTestCoverageCollectGCOV.cmake
index 6c74cf3..ef3aa76 100644
--- a/Modules/CTestCoverageCollectGCOV.cmake
+++ b/Modules/CTestCoverageCollectGCOV.cmake
@@ -161,7 +161,7 @@ function(ctest_coverage_collect_gcov)
message(STATUS "Could not determine source file corresponding to: ${gcov_file}")
endif()
- foreach(exclude_entry ${CTEST_CUSTOM_COVERAGE_EXCLUDE})
+ foreach(exclude_entry IN LISTS CTEST_CUSTOM_COVERAGE_EXCLUDE)
if(source_file MATCHES "${exclude_entry}")
set(is_excluded true)
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6200814c97918824b093c4ec6b47183f1f341c01
commit 6200814c97918824b093c4ec6b47183f1f341c01
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu Sep 17 11:35:24 2015 -0400
Commit: Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Thu Sep 17 13:09:43 2015 -0400
CTestCoverageCollectGCOV: replace tabulators
diff --git a/Tests/CTestCoverageCollectGCOV/test.cmake.in b/Tests/CTestCoverageCollectGCOV/test.cmake.in
index 29f7e7f..b2e6d6d 100644
--- a/Tests/CTestCoverageCollectGCOV/test.cmake.in
+++ b/Tests/CTestCoverageCollectGCOV/test.cmake.in
@@ -12,9 +12,9 @@ ctest_build()
ctest_test()
list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE
- "/foo/something"
- "/3rdparty/"
- "/bar/somethingelse"
+ "/foo/something"
+ "/3rdparty/"
+ "/bar/somethingelse"
)
include(CTestCoverageCollectGCOV)
-----------------------------------------------------------------------
Summary of changes:
CTestCustom.cmake.in | 16 +++++-----------
Help/command/ctest_read_custom_files.rst | 3 +++
Help/manual/cmake-variables.7.rst | 16 ++++++++++++++++
Help/variable/CTEST_CUSTOM_COVERAGE_EXCLUDE.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_ERROR_EXCEPTION.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_ERROR_MATCH.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_ERROR_POST_CONTEXT.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_ERROR_PRE_CONTEXT.rst | 8 ++++++++
.../CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE.rst | 9 ++++++---
.../variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS.rst | 9 +++++++++
.../CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS.rst | 9 +++++++++
.../CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE.rst | 9 ++++++---
Help/variable/CTEST_CUSTOM_MEMCHECK_IGNORE.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_POST_MEMCHECK.rst | 7 +++++++
Help/variable/CTEST_CUSTOM_POST_TEST.rst | 7 +++++++
Help/variable/CTEST_CUSTOM_PRE_MEMCHECK.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_PRE_TEST.rst | 7 +++++++
Help/variable/CTEST_CUSTOM_TEST_IGNORE.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_WARNING_EXCEPTION.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_WARNING_MATCH.rst | 8 ++++++++
Help/variable/CTEST_CUSTOM_XXX.txt | 3 +++
Help/variable/CTEST_EXTRA_COVERAGE_GLOB.rst | 8 ++++++++
Modules/CTestCoverageCollectGCOV.cmake | 2 +-
Tests/CTestCoverageCollectGCOV/test.cmake.in | 6 +++---
24 files changed, 170 insertions(+), 21 deletions(-)
create mode 100644 Help/variable/CTEST_CUSTOM_COVERAGE_EXCLUDE.rst
create mode 100644 Help/variable/CTEST_CUSTOM_ERROR_EXCEPTION.rst
create mode 100644 Help/variable/CTEST_CUSTOM_ERROR_MATCH.rst
create mode 100644 Help/variable/CTEST_CUSTOM_ERROR_POST_CONTEXT.rst
create mode 100644 Help/variable/CTEST_CUSTOM_ERROR_PRE_CONTEXT.rst
create mode 100644 Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS.rst
create mode 100644 Help/variable/CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS.rst
create mode 100644 Help/variable/CTEST_CUSTOM_MEMCHECK_IGNORE.rst
create mode 100644 Help/variable/CTEST_CUSTOM_POST_MEMCHECK.rst
create mode 100644 Help/variable/CTEST_CUSTOM_POST_TEST.rst
create mode 100644 Help/variable/CTEST_CUSTOM_PRE_MEMCHECK.rst
create mode 100644 Help/variable/CTEST_CUSTOM_PRE_TEST.rst
create mode 100644 Help/variable/CTEST_CUSTOM_TEST_IGNORE.rst
create mode 100644 Help/variable/CTEST_CUSTOM_WARNING_EXCEPTION.rst
create mode 100644 Help/variable/CTEST_CUSTOM_WARNING_MATCH.rst
create mode 100644 Help/variable/CTEST_CUSTOM_XXX.txt
create mode 100644 Help/variable/CTEST_EXTRA_COVERAGE_GLOB.rst
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list