[libc++][test] Skip a is_virtual_base_of test for apple-clang-17 (#… · llvm/llvm-project@1058e69 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 1058e69

frederick-vs-jatstellar

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

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