[libcxx-commits] [libcxx] [libc++][test] Removes Clang 16 validation. (PR #88558)
via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Apr 12 11:54:54 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Mark de Wever (mordante)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/88558.diff
1 Files Affected:
- (modified) libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp (+2-3)
``````````diff
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.
``````````
</details>
https://github.com/llvm/llvm-project/pull/88558
More information about the libcxx-commits
mailing list