increase number of warning reported on the dashboard (forgot the file in the last...
authorMickael Savinaud <savmickael@users.noreply.github.com>
Fri, 29 Jul 2011 09:12:26 +0000 (09:12 +0000)
committerMickael Savinaud <savmickael@users.noreply.github.com>
Fri, 29 Jul 2011 09:12:26 +0000 (09:12 +0000)
CHANGES
CMake/CTestCustom.cmake.in

diff --git a/CHANGES b/CHANGES
index 319d930887d580994f5eba51ec838db2828393fe..ea190c9b77839705d3315058abdf0d42631d8eec 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,7 @@ What's New for OpenJPEG
 
 July 29, 2011
 ! [mickael] solve some obvious warnings for WIN platform, increase number of warning reported on the dashboard, correct last warnings with gcc 4.4 (-Wall)
+! [mickael] increase number of warning reported on the dashboard (forgot the file in the last commit)
 
 July 27, 2011
 ! [mickael] added new decoding/dump tests based on data found in input/nonregresion repository (remove JPEG2000_CONFORMANCE_DATA_ROOT variable, add REF_DECODER_BIN_PATH variable for the encoder test suite). Remove definitively old tests. 
index 00ad66703b78c0add78310066844ff0e951c59b8..cc5c273f04ec50b34f4ebd8a51f05c48660f0190 100644 (file)
@@ -1,15 +1,30 @@
 #
-# For further details regarding this file, 
-# see http://www.vtk.org/Wiki/CMake_Testing_With_CTest#Customizing_CTest
+# Note that the ITK/CMakeLists.txt file configures this file
 #
+#               CMake/CTestCustom.cmake.in
+#
+# to this file
+#
+#       ${ITK_BINARY_DIR}/CTestCustom.cmake
+#
+#----------------------------------------------------------------------
+#
+# For further details regarding this file,
+# see http://www.cmake.org/Wiki/CMake_Testing_With_CTest#Customizing_CTest
+#
+# and
+# http://www.kitware.com/blog/home/post/27
+#
+#----------------------------------------------------------------------
 
 SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS   50)
-SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 50)
+SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 2000)
 
 SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
 
  # Exclude files from the Testing directories
+ ".*/tests/.*"
  ".*/Testing/.*"
  )