[ASan] disable zero_page_pc.cc on Android.

Bug: https://code.google.com/p/address-sanitizer/issues/detail?id=336

llvm-svn: 217228
This commit is contained in:
Alexander Potapenko 2014-09-05 06:26:08 +00:00
parent 6fe6ea740c
commit 869342c1cb
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
// Check that ASan correctly detects SEGV on the zero page. // Check that ASan correctly detects SEGV on the zero page.
// RUN: %clangxx_asan %s -o %t && not %run %t 2>&1 | FileCheck %s // 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(); typedef void void_f();
int main() { int main() {
void_f *func = (void_f *)0x7; void_f *func = (void_f *)0x7;