summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/init-order-atexit.cc
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2014-05-28 13:45:18 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2014-05-28 13:45:18 +0000
commit1fc4afe6298391f7bf9c7c98387ba94f1b23b120 (patch)
treea546ff8ac98b7dd55d2741df853dbabcf204a257 /test/asan/TestCases/init-order-atexit.cc
parent13c5ce2e9719dfa2b43b55aa3f6c5716283249e0 (diff)
[asan] Mass-xfail 17 tests on Android.
This makes check-asan pass on Android, which should help prevent future regressions. https://code.google.com/p/address-sanitizer/issues/detail?id=316 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@209736 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/asan/TestCases/init-order-atexit.cc')
-rw-r--r--test/asan/TestCases/init-order-atexit.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/asan/TestCases/init-order-atexit.cc b/test/asan/TestCases/init-order-atexit.cc
index c4defaf15..e0dac325c 100644
--- a/test/asan/TestCases/init-order-atexit.cc
+++ b/test/asan/TestCases/init-order-atexit.cc
@@ -1,3 +1,6 @@
+// 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.