diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-02-13 14:37:25 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-02-13 14:37:25 +0000 |
commit | 5cb24b8ca9eb82d883bf4cfcd79cf5a8c5e39e12 (patch) | |
tree | c482e63ab037083bca9adf575506d31f78dd95f9 /compiler-rt | |
parent | 4e6096b859aa9e37dafd952de7e4cef40561c50c (diff) | |
download | bcm5719-llvm-5cb24b8ca9eb82d883bf4cfcd79cf5a8c5e39e12.tar.gz bcm5719-llvm-5cb24b8ca9eb82d883bf4cfcd79cf5a8c5e39e12.zip |
[asan] Disable 1 test on Android.
llvm-svn: 201332
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/TestCases/throw_call_test.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/TestCases/throw_call_test.cc b/compiler-rt/lib/asan/lit_tests/TestCases/throw_call_test.cc index 974bc51d97c..3a97a94b630 100644 --- a/compiler-rt/lib/asan/lit_tests/TestCases/throw_call_test.cc +++ b/compiler-rt/lib/asan/lit_tests/TestCases/throw_call_test.cc @@ -1,6 +1,10 @@ // RUN: %clangxx_asan %s -o %t && %t // http://code.google.com/p/address-sanitizer/issues/detail?id=147 (not fixed). // BROKEN: %clangxx_asan %s -o %t -static-libstdc++ && %t +// +// Android builds with static libstdc++ by default. +// XFAIL: android + #include <stdio.h> static volatile int zero = 0; inline void pretend_to_do_something(void *x) { |