[compiler-rt] r267028 - [asan] Mark strdup test as unsupported on arm/linux.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 21 11:18:09 PDT 2016


Author: eugenis
Date: Thu Apr 21 13:18:09 2016
New Revision: 267028

URL: http://llvm.org/viewvc/llvm-project?rev=267028&view=rev
Log:
[asan] Mark strdup test as unsupported on arm/linux.

Modified:
    compiler-rt/trunk/test/asan/TestCases/strdup_oob_test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/strdup_oob_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/strdup_oob_test.cc?rev=267028&r1=267027&r2=267028&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/strdup_oob_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/strdup_oob_test.cc Thu Apr 21 13:18:09 2016
@@ -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";




More information about the llvm-commits mailing list