[libcxx-commits] [libcxx] [libc++][test] Removes Clang 16 validation. (PR #88558)

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Fri Apr 12 11:54:20 PDT 2024


https://github.com/mordante created https://github.com/llvm/llvm-project/pull/88558

None

>From 4defee35137559d2b8627f693740d7873b107bb0 Mon Sep 17 00:00:00 2001
From: Mark de Wever <koraq at xs4all.nl>
Date: Fri, 12 Apr 2024 20:53:22 +0200
Subject: [PATCH] [libc++][test] Removes Clang 16 validation.

---
 libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp b/libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp
index 588ce2a3d17edc..614323b1ffd7be 100644
--- a/libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp
+++ b/libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp
@@ -29,8 +29,7 @@ void do_exit() {
 
 int main(int, char**)
 {
-#if TEST_STD_VER >= 11 && TEST_CLANG_VER >= 1600
-  // TODO(LLVM-18): Remove the special-casing
+#if TEST_STD_VER >= 11
   {
     typedef int T;
     typedef cpp17_input_iterator<T*> MyInputIter;
@@ -52,7 +51,7 @@ int main(int, char**)
     assert(v[1] == 'b');
     assert(is_contiguous_container_asan_correct(v));
   }
-#endif
+#endif // TEST_STD_VER >= 11
   {
     typedef cpp17_input_iterator<int*> MyInputIter;
     // Sould not trigger ASan.



More information about the libcxx-commits mailing list