summaryrefslogtreecommitdiff
path: root/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
diff options
context:
space:
mode:
authorAndrew Haberlandt <ndrewh@users.noreply.github.com>2025-11-20 10:51:53 -0800
committerGitHub <noreply@github.com>2025-11-20 18:51:53 +0000
commitb3d1e921aa7aea7dfdb4dc40786570ba5ac2aba5 (patch)
treebff7278fdf2f3720249dec24849e306a8914d936 /compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
parent54d9d4d8683221776928a8aaf3dca3b36f2b879b (diff)
[ASAN] Disable broken __SANITIZER_DISABLE_CONTAINER_OVERFLOW__ tests on iOS/Android (#168821)
The tests added by #163468 appear to be broken due to lack of libcxx support (?). Marking unsupported everywhere for now since it passes on some platforms and fails on others, and I don't know the full list. Android fail: https://lab.llvm.org/buildbot/#/builders/186/builds/14106
Diffstat (limited to 'compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp')
-rw-r--r--compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp b/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
index 07c143609e94..f34fbc9bd780 100644
--- a/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
+++ b/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
@@ -19,6 +19,8 @@
// RUN: %clangxx_asan -D__SANITIZER_DISABLE_CONTAINER_OVERFLOW__ %s -c -o %t-main.o
// RUN: %clangxx_asan -D__SANITIZER_DISABLE_CONTAINER_OVERFLOW__ -o %t %t-main.o %t-object.o %libdl
// RUN: %run %t 2>&1 | FileCheck --check-prefix=CHECK-NO-CONTAINER-OVERFLOW %s
+//
+// UNSUPPORTED: true
#include <assert.h>
#include <sanitizer/common_interface_defs.h>