xGGESX, SELCTG parameter description: 'procedure)' -> 'a'
[platform/upstream/lapack.git] / CTestCustom.cmake.in
1 #
2 # For further details regarding this file,
3 # see http://www.vtk.org/Wiki/CMake_Testing_With_CTest#Customizing_CTest
4 #
5
6 set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE   0)
7 set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE   0)
8 set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS        500)
9 set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS      500)
10
11 # Files to explicitly exclude from code coverage
12 set(CTEST_CUSTOM_COVERAGE_EXCLUDE
13  ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
14
15  # Exclude the internal BLAS libraries
16  "/BLAS/"
17
18  # Exclude the testing code itself from code coverage
19  "/TESTING/"
20 )
21
22 # Warnings to explicitly ignore
23 set(CTEST_CUSTOM_WARNING_EXCEPTION
24   ${CTEST_CUSTOM_WARNING_EXCEPTION}
25
26   # Common warning when linking ATLAS built with GNU Fortran 4.1 and building
27   # with GNU Fortran 4.4.  It can be safely ignored.
28   "libgfortran.*may conflict with libgfortran"
29
30   # Harmless warning often seen on IRIX
31   "WARNING 84 : .*libm.* is not used for resolving any symbol"
32
33   # Warnings caused by sun compilers when building code to only run on your
34   # native platform
35   "xarch=native on this architecture implies -xarch=.*which generates code that does not run"
36
37   # Harmless warnings from the Intel compiler on Windows
38   "ipo: warning #11010: file format not recognized for .*\\.exe\\.embed\\.manifest\\.res"
39   "LINK : warning LNK4224: /INCREMENTAL:YES is no longer supported;  ignored"
40
41   # Warnings caused by string truncation in the test code.  The truncation is
42   # intentional
43   "Character string truncated to length 1 on assignment"
44
45   # Warnings caused by NFS build directories have out-of-sync times
46   "Warning: File .* has modification time .* in the future"
47 )
48
49 # Only rung post test if suitable python interpreter was found
50 set(PYTHONINTERP_FOUND @PYTHONINTERP_FOUND@)
51 set(PYTHON_EXECUTABLE  @PYTHON_EXECUTABLE@)
52 if(PYTHONINTERP_FOUND)
53   set(CTEST_CUSTOM_POST_TEST "${PYTHON_EXECUTABLE} ./lapack_testing.py -s -d TESTING")
54 endif()
55