[asan] Re-enable zero_page_pc test on Android.
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>
Tue, 18 Nov 2014 14:28:57 +0000 (14:28 +0000)
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>
Tue, 18 Nov 2014 14:28:57 +0000 (14:28 +0000)
It's not failing anymore. Not sure what has changed (the bot was down for a
long time), but lets keep it this way.

llvm-svn: 222236

compiler-rt/test/asan/TestCases/zero_page_pc.cc

index 613eea2..5810a9f 100644 (file)
@@ -1,9 +1,6 @@
 // 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 *)0x4;