[compiler-rt] r279880 - [asan] Mark symbolize_pc.cc as UNSUPPORTED on i386-apple.
Akira Hatanaka via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 26 16:08:29 PDT 2016
Author: ahatanak
Date: Fri Aug 26 18:08:28 2016
New Revision: 279880
URL: http://llvm.org/viewvc/llvm-project?rev=279880&view=rev
Log:
[asan] Mark symbolize_pc.cc as UNSUPPORTED on i386-apple.
atos currently doesn't work well when loaded from 32-bit binaries, which
was causing some of the bots to fail. Disable this test until we can
come up with a better fix.
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=279880&r1=279879&r2=279880&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/symbolize_pc.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/symbolize_pc.cc Fri Aug 26 18:08:28 2016
@@ -1,5 +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
//
// Tests __sanitizer_symbolize_pc.
#include <stdio.h>
More information about the llvm-commits
mailing list