diff options
author | Brad King <brad.king@kitware.com> | 2022-02-16 16:21:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-02-16 16:21:54 (GMT) |
commit | 6ade07ef89bd86a480b712e96cea862691b9cb23 (patch) | |
tree | 998b6a2172fd53d34a27b53682dc5b2f77e79428 /Tests/RunCMake/RunCMake.cmake | |
parent | 1e495fdab92b8ce5f2778c0cbc5e0ed55b056b98 (diff) | |
download | CMake-6ade07ef89bd86a480b712e96cea862691b9cb23.zip CMake-6ade07ef89bd86a480b712e96cea862691b9cb23.tar.gz CMake-6ade07ef89bd86a480b712e96cea862691b9cb23.tar.bz2 |
Tests: Teach RunCMake to ignore Xcode extension point warnings
On some Xcode versions, `xcodebuild` may warn:
... xcodebuild[...] Requested but did not find extension point with
identifier ...
Teach RunCMake to drop such incidental lines before matching against
expected output.
Diffstat (limited to 'Tests/RunCMake/RunCMake.cmake')
-rw-r--r-- | Tests/RunCMake/RunCMake.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/RunCMake/RunCMake.cmake b/Tests/RunCMake/RunCMake.cmake index 6f79b78..52b0905 100644 --- a/Tests/RunCMake/RunCMake.cmake +++ b/Tests/RunCMake/RunCMake.cmake @@ -159,6 +159,7 @@ function(run_cmake test) "|[^\n]*install_name_tool: warning: changes being made to the file will invalidate the code signature in:" "|[^\n]*xcodebuild[^\n]*DVTPlugInManager" + "|[^\n]*xcodebuild[^\n]*Requested but did not find extension point with identifier" "|[^\n]*xcodebuild[^\n]*warning: file type[^\n]*is based on missing file type" "|[^\n]*objc[^\n]*: Class AMSupportURL[^\n]* One of the two will be used. Which one is undefined." "|[^\n]*is a member of multiple groups" |