CTestCustom.cmake.in 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. "Source.CTest.Curl"
  16. "Source.CursesDialog.form"
  17. "Utilities.cmcurl"
  18. "Utilities.cmexpat."
  19. "Utilities.cmtar"
  20. "/usr/include.*warning.*shadowed declaration is here"
  21. "/usr/bin/ld.*warning.*-..*directory.name.*bin.*does not exist"
  22. "Redeclaration of .send..... with a different storage class specifier"
  23. "is not used for resolving any symbol"
  24. "Clock skew detected"
  25. "remark\\(1209"
  26. "stl_deque.h:1051"
  27. "Parser.cxx.*warning.*2111-D.*statement is unreachable"
  28. "CMakeSetupManifest.xml.*manifest authoring warning.*Unrecognized Element"
  29. )
  30. IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
  31. SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  32. ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  33. "XCode"
  34. )
  35. ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
  36. IF(NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
  37. SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  38. ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  39. "Kdevelop"
  40. )
  41. ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
  42. SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
  43. ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  44. # Exclude kwsys files from coverage results. They are reported
  45. # (with better coverage results) on kwsys dashboards...
  46. "/Source/(cm|kw)sys/"
  47. # Exclude try_compile sources from coverage results:
  48. "/CMakeFiles/CMakeTmp/"
  49. )