[compiler-rt] r302807 - [asan] Test 'strndup_oob_test.cc' added in r302781 fails on the clang-cmake-thumbv7-a15-full-sh bot.

Pierre Gousseau via llvm-commits llvm-commits at lists.llvm.org
Thu May 11 09:26:51 PDT 2017


Author: pgousseau
Date: Thu May 11 11:26:50 2017
New Revision: 302807

URL: http://llvm.org/viewvc/llvm-project?rev=302807&view=rev
Log:
[asan] Test 'strndup_oob_test.cc' added in r302781 fails on the clang-cmake-thumbv7-a15-full-sh bot.
Marking as unsupported on armv7l-unknown-linux-gnueabihf, same as strdup_oob_test.cc

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

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/strndup_oob_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/strndup_oob_test.cc?rev=302807&r1=302806&r2=302807&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/strndup_oob_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/strndup_oob_test.cc Thu May 11 11:26:50 2017
@@ -6,7 +6,8 @@
 // When built as C on Linux, strndup is transformed to __strndup.
 // RUN: %clangxx_asan -O3 -xc %s -o %t && not %run %t 2>&1 | FileCheck %s
 
-// UNSUPPORTED: win32,s390
+// Unwind problem on arm: "main" is missing from the allocation stack trace.
+// UNSUPPORTED: win32,s390,armv7l-unknown-linux-gnueabihf
 
 #include <string.h>
 




More information about the llvm-commits mailing list