[Lldb-commits] [lldb] r289199 - Fix TestMultipleTargets for on x86_64 architectures

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 9 02:05:07 PST 2016


Author: labath
Date: Fri Dec  9 04:05:07 2016
New Revision: 289199

URL: http://llvm.org/viewvc/llvm-project?rev=289199&view=rev
Log:
Fix TestMultipleTargets for on x86_64 architectures

This test links against liblldb, so it can only run when the target arch is the
same arch as liblldb. We already have a decorator for that, so apply it.

While I'm in there, also mark the test as debug-info independent.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py?rev=289199&r1=289198&r2=289199&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py Fri Dec  9 04:05:07 2016
@@ -16,8 +16,10 @@ from lldbsuite.test import lldbutil
 class TestMultipleSimultaneousDebuggers(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
+    NO_DEBUG_INFO_TESTCASE = True
 
     @skipIfNoSBHeaders
+    @skipIfHostIncompatibleWithRemote
     def test_multiple_debuggers(self):
         env = {self.dylibPath: self.getLLDBLibraryEnvVal()}
 




More information about the lldb-commits mailing list