Fix TestMultipleTargets for on x86_64 architectures
authorPavel Labath <labath@google.com>
Fri, 9 Dec 2016 10:05:07 +0000 (10:05 +0000)
committerPavel Labath <labath@google.com>
Fri, 9 Dec 2016 10:05:07 +0000 (10:05 +0000)
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.

llvm-svn: 289199

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

index 54e7b83..ad42528 100644 (file)
@@ -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()}