[compiler-rt] r217228 - [ASan] disable zero_page_pc.cc on Android.

Alexander Potapenko glider at google.com
Thu Sep 4 23:26:08 PDT 2014


Author: glider
Date: Fri Sep  5 01:26:08 2014
New Revision: 217228

URL: http://llvm.org/viewvc/llvm-project?rev=217228&view=rev
Log:
[ASan] disable zero_page_pc.cc on Android.
Bug: https://code.google.com/p/address-sanitizer/issues/detail?id=336

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

Modified: compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc?rev=217228&r1=217227&r2=217228&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc Fri Sep  5 01:26:08 2014
@@ -1,6 +1,9 @@
 // Check that ASan correctly detects SEGV on the zero page.
 // RUN: %clangxx_asan %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// https://code.google.com/p/address-sanitizer/issues/detail?id=336
+// XFAIL: android
+
 typedef void void_f();
 int main() {
   void_f *func = (void_f *)0x7;





More information about the llvm-commits mailing list