[compiler-rt] r279916 - [asan] Use "REQUIRES: x86_64-target-arch" to disable the test on i386.

Akira Hatanaka via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 26 22:57:50 PDT 2016


Author: ahatanak
Date: Sat Aug 27 00:57:50 2016
New Revision: 279916

URL: http://llvm.org/viewvc/llvm-project?rev=279916&view=rev
Log:
[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.

Modified:
    compiler-rt/trunk/test/sanitizer_common/TestCases/symbolize_pc.cc

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/symbolize_pc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/symbolize_pc.cc?rev=279916&r1=279915&r2=279916&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/symbolize_pc.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/symbolize_pc.cc Sat Aug 27 00:57:50 2016
@@ -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 <stdio.h>




More information about the llvm-commits mailing list