diff options
author | Brad King <brad.king@kitware.com> | 2017-08-30 14:38:28 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-08-30 14:38:31 (GMT) |
commit | f4aa346538433f4c89a9963d74ea5d3f9bd60390 (patch) | |
tree | 1681dd9cd6885f48a52f39c3bd0ac59437984eeb | |
parent | 92923f4cf40a5dd305ec8e6dd2b1901d609d34e0 (diff) | |
parent | 32b55a5862f0fe1ea59d052eb83994d5089f06a0 (diff) | |
download | CMake-f4aa346538433f4c89a9963d74ea5d3f9bd60390.zip CMake-f4aa346538433f4c89a9963d74ea5d3f9bd60390.tar.gz CMake-f4aa346538433f4c89a9963d74ea5d3f9bd60390.tar.bz2 |
Merge topic 'suppress-warning-count'
32b55a58 CTestCustom: Suppress warning summary count from SunPro
81b2b089 CTestCustom: Generalize comment on warning summary suppression
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Daniel Pfeifer <daniel@pfeifer-mail.de>
Merge-request: !1197
-rw-r--r-- | CTestCustom.cmake.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index e005643..0e4e9fe 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -70,11 +70,11 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*srand.*seed choices are.*poor" # we do not do crypto "IPA warning: function.*multiply defined in" - # Ignore clang's summary warning, assuming prior text has matched some + # Ignore compiler summary warning, assuming prior text has matched some # other warning expression: - "[0-9,]+ warnings? generated." - # similarly for PGI - "compilation completed with warnings" + "[0-9,]+ warnings? generated." # Clang + "compilation completed with warnings" # PGI + "[0-9]+ Warning\\(s\\) detected" # SunPro # scanbuild exceptions "char_traits.h:.*: warning: Null pointer argument in call to string length function" |