diff --git a/compiler-rt/test/asan/TestCases/zero_page_pc.cc b/compiler-rt/test/asan/TestCases/zero_page_pc.cc index 31ba5cec6c33..7cd3eabd213b 100644 --- a/compiler-rt/test/asan/TestCases/zero_page_pc.cc +++ b/compiler-rt/test/asan/TestCases/zero_page_pc.cc @@ -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;