summaryrefslogtreecommitdiff
path: root/CTestCustom.cmake.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-08-31 14:51:09 -0400
committerBrad King <brad.king@kitware.com>2007-08-31 14:51:09 -0400
commitb8ac3158ce9b82a967a9e582e89c1ecf00b69187 (patch)
tree072823247ef17eb9444988edda1ee9810d4b884f /CTestCustom.cmake.in
parent27187d78be18c98ce6b77e44d49e2516d20105cd (diff)
downloadcmake-b8ac3158ce9b82a967a9e582e89c1ecf00b69187.tar.gz
ENH: Create CTestCustom.cmake instead of CTestCustom.ctest. Create the old file to include the new one for compatibility. This should prevent the long delays of CTest traversing the whole tree looking for CTestCustom.ctest files.
Diffstat (limited to 'CTestCustom.cmake.in')
-rw-r--r--CTestCustom.cmake.in41
1 files changed, 41 insertions, 0 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in
new file mode 100644
index 0000000000..f6640f3ac7
--- /dev/null
+++ b/CTestCustom.cmake.in
@@ -0,0 +1,41 @@
+SET(CTEST_CUSTOM_WARNING_EXCEPTION
+ ${CTEST_CUSTOM_WARNING_EXCEPTION}
+ "xtree.[0-9]+. : warning C4702: unreachable code"
+ "warning LNK4221"
+ "variable .var_args[2]*. is used before its value is set"
+ "jobserver unavailable"
+ "warning: \\(Long double usage is reported only once for each file"
+ "warning: To disable this warning use"
+ "could not be inlined"
+ "libcmcurl.*has no symbols"
+ "not sorted slower link editing will result"
+ "stl_deque.h:479"
+ "Utilities.cmzlib."
+ "Utilities.cmxmlrpc."
+ "Source.CTest.Curl"
+ "Utilities.cmcurl"
+ "Source.CursesDialog.form"
+ "/usr/bin/ld.*warning.*-..*directory.name.*bin.*does not exist"
+ "Redeclaration of .send..... with a different storage class specifier"
+ "Utilities.cmexpat."
+ "is not used for resolving any symbol"
+ "Clock skew detected"
+ "remark\\(1209"
+ "stl_deque.h:1051"
+ )
+
+
+IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
+ SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
+ ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
+ "XCode"
+ )
+ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
+
+IF(NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
+ SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
+ ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
+ "Kdevelop"
+ )
+ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
+