[compiler-rt] r201332 - [asan] Disable 1 test on Android.
Evgeniy Stepanov
eugeni.stepanov at gmail.com
Thu Feb 13 06:37:25 PST 2014
Author: eugenis
Date: Thu Feb 13 08:37:25 2014
New Revision: 201332
URL: http://llvm.org/viewvc/llvm-project?rev=201332&view=rev
Log:
[asan] Disable 1 test on Android.
Modified:
compiler-rt/trunk/lib/asan/lit_tests/TestCases/throw_call_test.cc
Modified: compiler-rt/trunk/lib/asan/lit_tests/TestCases/throw_call_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/TestCases/throw_call_test.cc?rev=201332&r1=201331&r2=201332&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/TestCases/throw_call_test.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/TestCases/throw_call_test.cc Thu Feb 13 08:37:25 2014
@@ -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) {
More information about the llvm-commits
mailing list