summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorTamas Berghammer <tberghammer@google.com>2015-11-03 18:03:47 +0000
committerTamas Berghammer <tberghammer@google.com>2015-11-03 18:03:47 +0000
commit53feb8c10b1e0f795367dbb730e7e94b7ff0410b (patch)
treeb092b3f5572661d2416d64697167151d5efd6a6c /lldb/packages/Python/lldbsuite/test
parentdaa51d4a96d879777f3c9a4db3066051e52d554e (diff)
downloadbcm5719-llvm-53feb8c10b1e0f795367dbb730e7e94b7ff0410b.tar.gz
bcm5719-llvm-53feb8c10b1e0f795367dbb730e7e94b7ff0410b.zip
Skip TestBacktraceAll on android-arm
The android compiler can't compile the inferior because of an issue in the standard library. llvm-svn: 251951
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py5
1 files changed, 4 insertions, 1 deletions
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<T>
def test(self):
"""Test breakpoint handling after a thread join."""
self.build(dictionary=self.getBuildFlags())
OpenPOWER on IntegriCloud