From 56658af2cb2329f5691b4e837b6c06aa3833f81e Mon Sep 17 00:00:00 2001 From: Akira Hatanaka Date: Sat, 27 Aug 2016 05:57:50 +0000 Subject: [PATCH] [asan] Use "REQUIRES: x86_64-target-arch" to disable the test on i386. My attempt to disable this test on i386 by adding "UNSUPPORTED: i386-apple" in r279880 wasn't succesful, so I'm using REQUIRES instead. llvm-svn: 279916 --- compiler-rt/test/sanitizer_common/TestCases/symbolize_pc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/sanitizer_common/TestCases/symbolize_pc.cc b/compiler-rt/test/sanitizer_common/TestCases/symbolize_pc.cc index f6a45e9..a05bfd7 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/symbolize_pc.cc +++ b/compiler-rt/test/sanitizer_common/TestCases/symbolize_pc.cc @@ -1,6 +1,6 @@ // RUN: %clangxx -O0 %s -o %t // RUN: %env_tool_opts=strip_path_prefix=/TestCases/ %run %t 2>&1 | FileCheck %s -// UNSUPPORTED: i386-apple +// REQUIRES: x86_64-target-arch // // Tests __sanitizer_symbolize_pc. #include -- 2.7.4