[compiler-rt] r222236 - [asan] Re-enable zero_page_pc test on Android.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Tue Nov 18 06:28:58 PST 2014


Author: eugenis
Date: Tue Nov 18 08:28:57 2014
New Revision: 222236

URL: http://llvm.org/viewvc/llvm-project?rev=222236&view=rev
Log:
[asan] Re-enable zero_page_pc test on Android.

It's not failing anymore. Not sure what has changed (the bot was down for a
long time), but lets keep it this way.

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=222236&r1=222235&r2=222236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc Tue Nov 18 08:28:57 2014
@@ -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;





More information about the llvm-commits mailing list