[asan] Enable 2 tests on Android.

Due to bionic improvements and "recent" sized-delete changes in clang.

llvm-svn: 240856
This commit is contained in:
Evgeniy Stepanov 2015-06-26 23:41:50 +00:00
parent 4e78a248e2
commit 77d543f756
2 changed files with 0 additions and 8 deletions

View 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>

View 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.