diff options
author | Brad King <brad.king@kitware.com> | 2022-03-11 14:33:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-03-11 14:41:45 (GMT) |
commit | af5e4e44ca950c9df0c787c139bd75315810b55f (patch) | |
tree | a40fd2e07d80bd221dd9e1ca57161fd97c7a1d56 /Tests/RunCMake/RunCMake.cmake | |
parent | d8f95471c7d779c8bb1606fbfff664f1dad6cde1 (diff) | |
download | CMake-af5e4e44ca950c9df0c787c139bd75315810b55f.zip CMake-af5e4e44ca950c9df0c787c139bd75315810b55f.tar.gz CMake-af5e4e44ca950c9df0c787c139bd75315810b55f.tar.bz2 |
Tests: Teach RunCMake to ignore lld-link PDB item index warnings
In commit fade5b5b8c (gitlab-ci: Update Windows builds to MSVC 19.31
toolset, 2022-03-09, v3.23.0-rc3~4^2~1) we switched from MSVC toolset
version 14.30.30705 to version 14.31.31103. The latter causes the
Clang 13.0.0 lld-link tool to warn about invalid PDB item indexes, as
discussed [here](https://developercommunity.visualstudio.com/t/1667797).
This causes the RunCMake.PrecompileHeaders test PchLibObjLibExe case to
fail on NMake builds due to unexpected content on stderr. The warnings
appear with Ninja too, but `ninja` prints them on stdout. Teach the
RunCMake infrastructure to ignore these warnings.
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 3066cc1..1f43ee0 100644 --- a/Tests/RunCMake/RunCMake.cmake +++ b/Tests/RunCMake/RunCMake.cmake @@ -153,6 +153,7 @@ function(run_cmake test) "|BullseyeCoverage" "|[a-z]+\\([0-9]+\\) malloc:" "|clang[^:]*: warning: the object size sanitizer has no effect at -O0, but is explicitly enabled:" + "|lld-link: warning: procedure symbol record for .* refers to PDB item index [0-9A-Fa-fx]+ which is not a valid function ID record" "|Error kstat returned" "|Hit xcodebuild bug" "|Recompacting log\\.\\.\\." |