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

via libcxx-commits libcxx-commits at lists.llvm.org
Tue Apr 16 11:21:42 PDT 2024


Author: Mark de Wever
Date: 2024-04-16T20:21:39+02:00
New Revision: 388da6a31b7ba3062f9306b894656e265b9b33eb

URL: https://github.com/llvm/llvm-project/commit/388da6a31b7ba3062f9306b894656e265b9b33eb
DIFF: https://github.com/llvm/llvm-project/commit/388da6a31b7ba3062f9306b894656e265b9b33eb.diff

LOG: [libc++][test] Removes Clang 16 validation. (#88558)

Added: 
    

Modified: 
    libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp

Removed: 
    


################################################################################
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