[asan] Enable 2 tests on Android.
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>
Fri, 26 Jun 2015 23:41:50 +0000 (23:41 +0000)
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>
Fri, 26 Jun 2015 23:41:50 +0000 (23:41 +0000)
Due to bionic improvements and "recent" sized-delete changes in clang.

llvm-svn: 240856

compiler-rt/test/asan/TestCases/Linux/sized_delete_test.cc
compiler-rt/test/asan/TestCases/init-order-atexit.cc

index 7dc8018..1146b82 100644 (file)
@@ -6,11 +6,6 @@
 // RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:new_delete_type_mismatch=0     %run %t scalar
 // RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:new_delete_type_mismatch=0     %run %t array
 
-// FIXME: the following two lines are not true after r232788.
-// Sized-delete is implemented with a weak delete() definition.
-// Weak symbols are kind of broken on Android.
-// XFAIL: android
-
 #include <new>
 #include <stdio.h>
 #include <string>
index 1beeb33..1bbc655 100644 (file)
@@ -1,6 +1,3 @@
-// FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316
-// XFAIL: android
-//
 // Test for the following situation:
 // (1) global A is constructed.
 // (2) exit() is called during construction of global B.