forked from OSchip/llvm-project
[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:
parent
6fe6ea740c
commit
869342c1cb
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue