CTestCustom.cmake.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. SET(CTEST_CUSTOM_WARNING_EXCEPTION
  2. ${CTEST_CUSTOM_WARNING_EXCEPTION}
  3. "xtree.[0-9]+. : warning C4702: unreachable code"
  4. "warning LNK4221"
  5. "variable .var_args[2]*. is used before its value is set"
  6. "jobserver unavailable"
  7. "warning: \\(Long double usage is reported only once for each file"
  8. "warning: To disable this warning use"
  9. "could not be inlined"
  10. "libcmcurl.*has no symbols"
  11. "not sorted slower link editing will result"
  12. "stl_deque.h:479"
  13. "Utilities.cmzlib."
  14. "Utilities.cmxmlrpc."
  15. "Source.CTest.Curl"
  16. "Utilities.cmcurl"
  17. "Source.CursesDialog.form"
  18. "/usr/bin/ld.*warning.*-..*directory.name.*bin.*does not exist"
  19. "Redeclaration of .send..... with a different storage class specifier"
  20. "Utilities.cmexpat."
  21. "is not used for resolving any symbol"
  22. "Clock skew detected"
  23. "remark\\(1209"
  24. "stl_deque.h:1051"
  25. "Parser.cxx.*warning.*2111-D.*statement is unreachable"
  26. "CMakeSetupManifest.xml.*manifest authoring warning.*Unrecognized Element"
  27. )
  28. IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
  29. SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  30. ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  31. "XCode"
  32. )
  33. ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
  34. IF(NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
  35. SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  36. ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  37. "Kdevelop"
  38. )
  39. ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
  40. SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  41. ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  42. # Exclude kwsys files from coverage results. They are reported
  43. # (with better coverage results) on kwsys dashboards...
  44. "/Source/(cm|kw)sys/"
  45. # Exclude try_compile sources from coverage results:
  46. "/CMakeFiles/CMakeTmp/"
  47. )