[compiler-rt] r327122 - [asan] Try to unbreak arm build bots by only running the test on
Dan Liew via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 9 04:26:29 PST 2018
Author: delcypher
Date: Fri Mar 9 04:26:29 2018
New Revision: 327122
URL: http://llvm.org/viewvc/llvm-project?rev=327122&view=rev
Log:
[asan] Try to unbreak arm build bots by only running the test on
x86_64 and x86_64H (and not in the iOS simulator) where it seems
to work. We need to properly fix the test when time permits.
Modified:
compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc
Modified: compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc?rev=327122&r1=327121&r2=327122&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc Fri Mar 9 04:26:29 2018
@@ -26,6 +26,7 @@
// RUN: echo "interceptor_name:strcat" > %t.supp
// RUN: %env_asan_opts=suppressions='"%t.supp"' %run %t
+// REQUIRES: (target-is-x86_64 || target-is-x86_64h) && !ios
// UNSUPPORTED: win32
// UNSUPPORTED: android
More information about the llvm-commits
mailing list