diff options
Diffstat (limited to 'compiler-rt/lib/asan/lit_tests')
-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) { |