[libcxx-commits] [libcxx] 22c3d9d - [libc++] Disable test which timeouts on ARM with sanitizers
Vitaly Buka via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Oct 27 14:28:42 PDT 2023
Author: Vitaly Buka
Date: 2023-10-27T14:28:28-07:00
New Revision: 22c3d9d9a41b2cc12c38622735e9963374fe7b1c
URL: https://github.com/llvm/llvm-project/commit/22c3d9d9a41b2cc12c38622735e9963374fe7b1c
DIFF: https://github.com/llvm/llvm-project/commit/22c3d9d9a41b2cc12c38622735e9963374fe7b1c.diff
LOG: [libc++] Disable test which timeouts on ARM with sanitizers
Introduced with cf0f6a146038ca95e9ab9df40c153fd22015a042 (#70020).
https://lab.llvm.org/buildbot/#/builders/237/builds/5145
https://lab.llvm.org/buildbot/#/builders/236/builds/7004
https://lab.llvm.org/buildbot/#/builders/239/builds/4269
Sometimes it passes with Asan but it's extemly slow
```
Slowest Tests:
1388.61s: llvm-libc++-shared.cfg.in :: std/experimental/simd/simd.reference/reference_assignment.pass.cpp
309.42s: llvm-libc++-shared.cfg.in :: std/containers/sequences/deque/deque.modifiers/insert_size_value.pass.cpp
```
Added:
Modified:
libcxx/test/std/experimental/simd/simd.reference/reference_assignment.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/experimental/simd/simd.reference/reference_assignment.pass.cpp b/libcxx/test/std/experimental/simd/simd.reference/reference_assignment.pass.cpp
index 4b943689c6fdefb..bf84cc4b04e3d84 100644
--- a/libcxx/test/std/experimental/simd/simd.reference/reference_assignment.pass.cpp
+++ b/libcxx/test/std/experimental/simd/simd.reference/reference_assignment.pass.cpp
@@ -8,6 +8,9 @@
// UNSUPPORTED: c++03, c++11, c++14
+// FIXME: Timeouts.
+// UNSUPPORTED: sanitizer-new-delete
+
// <experimental/simd>
//
// [simd.reference]
More information about the libcxx-commits
mailing list