summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/atexit_stats.cc
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2014-02-14 14:37:13 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2014-02-14 14:37:13 +0000
commitc22f806da90f00903009e2d448ace58b890ee50b (patch)
tree84bd6d068074d09e3265585168b5b3d250a6e398 /test/asan/TestCases/atexit_stats.cc
parentc6ab9633450464d59b862c39dbb69b6401b8b37e (diff)
[asan] Disabled one more test on Android.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@201416 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/asan/TestCases/atexit_stats.cc')
-rw-r--r--test/asan/TestCases/atexit_stats.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/asan/TestCases/atexit_stats.cc b/test/asan/TestCases/atexit_stats.cc
index e3b1269d2..eaa1beb47 100644
--- a/test/asan/TestCases/atexit_stats.cc
+++ b/test/asan/TestCases/atexit_stats.cc
@@ -1,6 +1,11 @@
// Make sure we report atexit stats.
// RUN: %clangxx_asan -O3 %s -o %t
// RUN: ASAN_OPTIONS=atexit=1:print_stats=1 %t 2>&1 | FileCheck %s
+//
+// No atexit output on Android due to
+// https://code.google.com/p/address-sanitizer/issues/detail?id=263
+// XFAIL: android
+
#include <stdlib.h>
#if !defined(__APPLE__)
#include <malloc.h>