diff options
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/test/asan/TestCases/strdup_oob_test.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/strdup_oob_test.cc b/compiler-rt/test/asan/TestCases/strdup_oob_test.cc index dc9eec803dd..492555ad101 100644 --- a/compiler-rt/test/asan/TestCases/strdup_oob_test.cc +++ b/compiler-rt/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"; |