diff options
author | Brad King <brad.king@kitware.com> | 2016-05-31 14:26:51 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-05-31 14:26:51 (GMT) |
commit | ebcc13e1b3f4c21349ab50446f932a4c1ee03e51 (patch) | |
tree | 703f94fdf519f964ab04f6c9facb850286d2a017 | |
parent | 88ede8e5eaee60eee9357dc1d4384ebe74ca35c8 (diff) | |
parent | d4e58dd979d001c3e28283b184ebe71d9c88bf76 (diff) | |
download | CMake-ebcc13e1b3f4c21349ab50446f932a4c1ee03e51.zip CMake-ebcc13e1b3f4c21349ab50446f932a4c1ee03e51.tar.gz CMake-ebcc13e1b3f4c21349ab50446f932a4c1ee03e51.tar.bz2 |
Merge topic 'suppress-dashboard-warnings'
d4e58dd9 CTestCustom: Suppress scanbuild warning on unsigned left shift
154fa2c5 CTestCustom: Suppress warnings about rand() on OpenBSD
e4a361bb CTestCustom: Suppress Windows manifest unrecognized element warning
-rw-r--r-- | CTestCustom.cmake.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index abef692..a39049b 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -53,7 +53,7 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION "[Qq]t([Cc]ore|[Gg]ui|[Ww]idgets).*warning.*conversion.*may alter its value" "warning:.*is.*very unsafe.*consider using.*" "warning:.*is.*misused, please use.*" - "CMakeSetupManifest.xml.*manifest authoring warning.*Unrecognized Element" + "cmake.version.manifest.*manifest authoring warning.*Unrecognized Element" "cc-3968 CC: WARNING File.*" # "implicit" truncation by static_cast "ld: warning: directory not found for option .-(F|L)" "ld: warning .*/libgcc.a archive's cputype" @@ -62,6 +62,7 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION "warning.*This version of Mac OS X is unsupported" "clang.*: warning: argument unused during compilation: .-g" "note: in expansion of macro" # diagnostic context note + "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*rand.*may return deterministic values" "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*rand.*isn.*t random" # we do not do crypto "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*srand.*seed choices are.*poor" # we do not do crypto @@ -80,6 +81,7 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION "index.c.*warning: Access to field.*results in a dereference of a null pointer.*loaded from variable.*" "cm_sha2.*warning: Value stored to.*is never read" "testProcess.*warning: Dereference of null pointer .loaded from variable .invalidAddress.." + "liblzma/simple/x86.c:[0-9]+:[0-9]+: warning: The result of the '<<' expression is undefined" ) if(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode") |