[Lldb-commits] [lldb] r251951 - Skip TestBacktraceAll on android-arm

Tamas Berghammer via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 3 10:03:48 PST 2015


Author: tberghammer
Date: Tue Nov  3 12:03:47 2015
New Revision: 251951

URL: http://llvm.org/viewvc/llvm-project?rev=251951&view=rev
Log:
Skip TestBacktraceAll on android-arm

The android compiler can't compile the inferior because of an issue
in the standard library.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py?rev=251951&r1=251950&r2=251951&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py Tue Nov  3 12:03:47 2015
@@ -17,7 +17,10 @@ class BreakpointAfterJoinTestCase(TestBa
         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())




More information about the lldb-commits mailing list