From 53feb8c10b1e0f795367dbb730e7e94b7ff0410b Mon Sep 17 00:00:00 2001 From: Tamas Berghammer Date: Tue, 3 Nov 2015 18:03:47 +0000 Subject: Skip TestBacktraceAll on android-arm The android compiler can't compile the inferior because of an issue in the standard library. llvm-svn: 251951 --- .../test/functionalities/thread/backtrace_all/TestBacktraceAll.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lldb/packages/Python/lldbsuite') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py index d4000548b2c..91bc68577a4 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py @@ -17,7 +17,10 @@ class BreakpointAfterJoinTestCase(TestBase): TestBase.setUp(self) # Find the line number for our breakpoint. self.breakpoint = line_number('ParallelTask.cpp', '// Set breakpoint here') - + + @skipIfTargetAndroid(archs=["arm"]) # The android-arm compiler can't compile the inferior + # because of an issue around std::future. + # TODO: Change the test to don't depend on std::future def test(self): """Test breakpoint handling after a thread join.""" self.build(dictionary=self.getBuildFlags()) -- cgit v1.2.3