fixed Makefile.nix to load openjpeg library from this archive
[openjpeg.git] / CMake / CTestCustom.cmake.in
1 #
2 # Note that the ITK/CMakeLists.txt file configures this file
3 #
4 #               CMake/CTestCustom.cmake.in
5 #
6 # to this file
7 #
8 #       ${ITK_BINARY_DIR}/CTestCustom.cmake
9 #
10 #----------------------------------------------------------------------
11 #
12 # For further details regarding this file,
13 # see http://www.cmake.org/Wiki/CMake_Testing_With_CTest#Customizing_CTest
14 #
15 # and
16 # http://www.kitware.com/blog/home/post/27
17 #
18 #----------------------------------------------------------------------
19
20 SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS   50)
21 SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 2000)
22
23 SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
24  ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
25
26  # Exclude files from the Testing directories
27  ".*/tests/.*"
28  ".*/Testing/.*"
29  )
30
31 SET(CTEST_CUSTOM_WARNING_EXCEPTION
32   ${CTEST_CUSTOM_WARNING_EXCEPTION}
33   
34   # Suppress warning caused by intentional messages about deprecation
35   ".*warning,.* is deprecated"
36 )