[libc++][test] Skip a is_virtual_base_of
test for apple-clang-17 (#… · llvm/llvm-project@1058e69 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 1058e69
authored and
committed
[libc++][test] Skip a is_virtual_base_of
test for apple-clang-17 (#131438)
It seems that Apple Clang 17 starts to be used for CI, while it hasn't supported `__builtin_is_virtual_base_of` yet. And thus we need to skip the test for `is_virtual_base_of`. Follows up #131302.
File tree
1 file changed
lines changed
- libcxx/test/std/utilities/meta/meta.rel
1 file changed
lines changed
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -9,7 +9,7 @@ | ||
9 | 9 | // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20, c++23 |
10 | 10 | |
11 | 11 | // These compilers don't support __builtin_is_virtual_base_of yet. |
12 | -// UNSUPPORTED: clang-18, clang-19, gcc-14, apple-clang-16 | |
12 | +// UNSUPPORTED: clang-18, clang-19, gcc-14, apple-clang-16, apple-clang-17 | |
13 | 13 | |
14 | 14 | // <type_traits> |
15 | 15 |