CTestCustom.cmake 1.2 KB

12345678910111213141516171819202122
  1. set(CTEST_CUSTOM_WARNING_EXCEPTION ${CTEST_CUSTOM_WARNING_EXCEPTION}
  2. " C4723: " # MSVC 2012 can't suppress this warning
  3. " C4756: " # MSVC 2012 can't suppress this warning
  4. "used uninitialized in this function"
  5. "Skipping compilation of tests gatherStruct and gather2dim because of clang bug" # Not a helpful warning for the dashboard
  6. "warning is a GCC extension"
  7. "^-- " # Ignore output from cmake
  8. "AVX disabled per default because of old/broken compiler" # This warning is meant for users not the dashboard
  9. "WARNING non-zero return value in ctest from: make" # Ignore output from ctest
  10. "ipo: warning #11010:" # Ignore warning about incompatible libraries with ICC -m32 on 64-bit system
  11. "include/qt4" # -Wuninitialized in QWeakPointer(X *ptr)
  12. " note: " # Notes are additional lines from errors (or warnings) that we don't want to count as additional warnings
  13. "clang: warning: argument unused during compilation: '-stdlib=libc"
  14. "clang 3.6.x miscompiles AVX code" # a preprocessor warning for users of Vc, irrelevant for the dashboard
  15. )
  16. set(CTEST_CUSTOM_ERROR_EXCEPTION ${CTEST_CUSTOM_ERROR_EXCEPTION}
  17. "^ICECC"
  18. "^make\\[[1-9]\\]: "
  19. "^collect2: ld returned . exit status"
  20. "^make: \\*\\*\\* \\[.*\\] Error ")