Skip to content

Commit 37ba94b

Browse files
committed
clang-19.1 and newer clang-19 versions *are* new enough to run the tests
1 parent 4a4fd53 commit 37ba94b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array14.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
// These compiler versions don't enable sized deallocation by default.
1212
// UNSUPPORTED: clang-17, clang-18
1313

14-
// Android clang-r536225 identifies as clang-19 but it predates the real
14+
// Android clang-r536225 identifies as clang-19.0 but it predates the real
1515
// LLVM 19.0.0, so it also leaves sized deallocation off by default.
16-
// UNSUPPORTED: android && clang-19
16+
// UNSUPPORTED: android && clang-19.0
1717

1818
// UNSUPPORTED: sanitizer-new-delete, c++03, c++11
1919
// XFAIL: apple-clang

libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete14.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
// These compiler versions do not enable sized deallocation by default.
1212
// UNSUPPORTED: clang-17, clang-18
1313

14-
// Android clang-r536225 identifies as clang-19 but it predates the real
14+
// Android clang-r536225 identifies as clang-19.0 but it predates the real
1515
// LLVM 19.0.0, so it also leaves sized deallocation off by default.
16-
// UNSUPPORTED: android && clang-19
16+
// UNSUPPORTED: android && clang-19.0
1717

1818
// UNSUPPORTED: sanitizer-new-delete, c++03, c++11
1919
// XFAIL: apple-clang

libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/is_array.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ int main(int, char**)
7979
// correct handling of std::is_array<T[0]>. This test will pass as long as
8080
// Clang and libc++ come from the same LLVM commit, but we can't detect that
8181
// here.
82-
#if !defined(__ANDROID__) || __clang_major__ != 19
82+
#if !defined(__ANDROID__) || __clang_major__ != 19 || __clang_minor__ != 0
8383
test_is_not_array<char[0]>();
8484
#endif
8585
test_is_array<char[]>();

0 commit comments

Comments
 (0)