summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2015-06-26 23:41:50 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2015-06-26 23:41:50 +0000
commit8359078997acfc40e790f95e241566625509944f (patch)
tree75182e7db5a03bbb2a6daa82dce17e73fcd3ffb3
parentd650935bfb57ee613d9cbd51b86dff1a5d563315 (diff)
downloadcompiler-rt-8359078997acfc40e790f95e241566625509944f.tar.gz
[asan] Enable 2 tests on Android.
Due to bionic improvements and "recent" sized-delete changes in clang. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@240856 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/asan/TestCases/Linux/sized_delete_test.cc5
-rw-r--r--test/asan/TestCases/init-order-atexit.cc3
2 files changed, 0 insertions, 8 deletions
diff --git a/test/asan/TestCases/Linux/sized_delete_test.cc b/test/asan/TestCases/Linux/sized_delete_test.cc
index 7dc8018b8..1146b8239 100644
--- a/test/asan/TestCases/Linux/sized_delete_test.cc
+++ b/test/asan/TestCases/Linux/sized_delete_test.cc
@@ -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>
diff --git a/test/asan/TestCases/init-order-atexit.cc b/test/asan/TestCases/init-order-atexit.cc
index 1beeb33cd..1bbc655b1 100644
--- a/test/asan/TestCases/init-order-atexit.cc
+++ b/test/asan/TestCases/init-order-atexit.cc
@@ -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.