diff options
author | Brad King <brad.king@kitware.com> | 2017-06-07 10:46:20 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-06-07 10:46:20 -0400 |
commit | 488ffbef4f63a49d1a2a9c30eaaa7956df809ddd (patch) | |
tree | 502ac9899f551cefd5c0cab3dc6f1b565d0b9966 /CTestCustom.cmake.in | |
parent | 5b1d0aeffe337e8109d267d88f7533807fb76c31 (diff) | |
download | cmake-488ffbef4f63a49d1a2a9c30eaaa7956df809ddd.tar.gz |
CTestCustom: Suppress warning matched on source file name
The `WarningMessagesDialog.cxx` source file name is displayed by
MSVC in the compiler output, and the CTest launcher matches the
name as a warning line starting in "Warning". Suppress this
false positive with a custom exception.
Diffstat (limited to 'CTestCustom.cmake.in')
-rw-r--r-- | CTestCustom.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index fa2fbe35c5..6a37275ac7 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -44,6 +44,7 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION "Warning: LINN32: Last line.*is less.*" "Warning: Olimit was exceeded on function.*" "Warning: To override Olimit for all functions in file.*" + "WarningMessagesDialog\\.cxx" "warning.*directory name.*CMake-Xcode.*/bin/.*does not exist.*" "stl_deque.h:1051" "(Lexer|Parser).*warning.*conversion.*may (alter its value|change the sign)" |