diff options
author | Brad King <brad.king@kitware.com> | 2017-03-24 12:18:29 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-03-24 12:18:32 (GMT) |
commit | 080350b622e4315e91f87921485512a95bdf7458 (patch) | |
tree | c87d47e4a329078fab1badd094fb01b3d41dc1ac | |
parent | 6cd8aa3c2a2fc6ecee9b8efea300b3b978660c35 (diff) | |
parent | ede8db109cabae485e53002c3350eb4d531ab076 (diff) | |
download | CMake-080350b622e4315e91f87921485512a95bdf7458.zip CMake-080350b622e4315e91f87921485512a95bdf7458.tar.gz CMake-080350b622e4315e91f87921485512a95bdf7458.tar.bz2 |
Merge topic 'suppress-xcode-error'
ede8db10 RunCMake: Ignore xcodebuild bug warnings in tests
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !617
-rw-r--r-- | Tests/RunCMake/RunCMake.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/RunCMake.cmake b/Tests/RunCMake/RunCMake.cmake index 5f66da0..9e2fe7a 100644 --- a/Tests/RunCMake/RunCMake.cmake +++ b/Tests/RunCMake/RunCMake.cmake @@ -101,7 +101,7 @@ function(run_cmake test) endif() foreach(o out err) string(REGEX REPLACE "\r\n" "\n" actual_std${o} "${actual_std${o}}") - string(REGEX REPLACE "(^|\n)((==[0-9]+==|BullseyeCoverage|[a-z]+\\([0-9]+\\) malloc:|Error kstat returned|[^\n]*is a member of multiple groups|[^\n]*from Time Machine by path|[^\n]*Bullseye Testing Technology)[^\n]*\n)+" "\\1" actual_std${o} "${actual_std${o}}") + string(REGEX REPLACE "(^|\n)((==[0-9]+==|BullseyeCoverage|[a-z]+\\([0-9]+\\) malloc:|Error kstat returned|Hit xcodebuild bug|[^\n]*is a member of multiple groups|[^\n]*from Time Machine by path|[^\n]*Bullseye Testing Technology)[^\n]*\n)+" "\\1" actual_std${o} "${actual_std${o}}") string(REGEX REPLACE "\n+$" "" actual_std${o} "${actual_std${o}}") set(expect_${o} "") if(DEFINED expect_std${o}) |