CTestCustom.cmake.in 1.7 KB

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