summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2016-04-21 18:18:09 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2016-04-21 18:18:09 +0000
commit94a44ec2b58ed284cb7175b7ed605ae8675a7de9 (patch)
tree6afd41bd4aad5e0a59dca94818c109181c1784cc /test
parent8c065579a391fa2c4df0d15908a901c04f2736bb (diff)
[asan] Mark strdup test as unsupported on arm/linux.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@267028 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/asan/TestCases/strdup_oob_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/asan/TestCases/strdup_oob_test.cc b/test/asan/TestCases/strdup_oob_test.cc
index dc9eec803..492555ad1 100644
--- a/test/asan/TestCases/strdup_oob_test.cc
+++ b/test/asan/TestCases/strdup_oob_test.cc
@@ -6,6 +6,9 @@
// When built as C on Linux, strdup is transformed to __strdup.
// RUN: %clangxx_asan -O3 -xc %s -o %t && not %run %t 2>&1 | FileCheck %s
+// Unwind problem on arm: "main" is missing from the allocation stack trace.
+// UNSUPPORTED: armv7l-unknown-linux-gnueabihf
+
#include <string.h>
char kString[] = "foo";