You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

CTestCustom.cmake.in 1.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #
  2. # For further details regarding this file,
  3. # see http://www.vtk.org/Wiki/CMake_Testing_With_CTest#Customizing_CTest
  4. #
  5. SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0)
  6. SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0)
  7. SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS 500)
  8. SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 500)
  9. # Files to explicitly exclude from code coverage
  10. SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  11. ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  12. # Exclude the internal BLAS libraries
  13. "/BLAS/"
  14. # Exclude the testing code itself from code coverage
  15. "/TESTING/"
  16. )
  17. # Warnings to explicitly ignore
  18. SET(CTEST_CUSTOM_WARNING_EXCEPTION
  19. ${CTEST_CUSTOM_WARNING_EXCEPTION}
  20. # Common warning when linking ATLAS built with GNU Fortran 4.1 and building
  21. # with GNU Fortran 4.4. It can be safely ignored.
  22. "libgfortran.*may conflict with libgfortran"
  23. # Harmless warning often seen on IRIX
  24. "WARNING 84 : .*libm.* is not used for resolving any symbol"
  25. # Warnings caused by sun compilers when building code to only run on your
  26. # native platform
  27. "xarch=native on this architecture implies -xarch=.*which generates code that does not run"
  28. # Harmless warnings from the Intel compiler on Windows
  29. "ipo: warning #11010: file format not recognized for .*\\.exe\\.embed\\.manifest\\.res"
  30. "LINK : warning LNK4224: /INCREMENTAL:YES is no longer supported; ignored"
  31. # Warnings caused by string truncation in the test code. The truncation is
  32. # intentional
  33. "Character string truncated to length 1 on assignment"
  34. )
  35. SET(CTEST_CUSTOM_POST_TEST "./lapack_testing.py -s -d TESTING")