diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2016-04-21 18:18:09 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2016-04-21 18:18:09 +0000 |
commit | 0e97e036d3dd0f55bf1bd3a0bc2c69ed438fbba5 (patch) | |
tree | 73a38108fd5ca4c104fb925023df398b1f9d8457 /compiler-rt | |
parent | 7e02656004ceb12d8789ca5b0c64752fceaa3ef5 (diff) | |
download | bcm5719-llvm-0e97e036d3dd0f55bf1bd3a0bc2c69ed438fbba5.tar.gz bcm5719-llvm-0e97e036d3dd0f55bf1bd3a0bc2c69ed438fbba5.zip |
[asan] Mark strdup test as unsupported on arm/linux.
llvm-svn: 267028
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"; |