diff options
author | Pavel Labath <labath@google.com> | 2016-12-09 10:05:07 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-12-09 10:05:07 +0000 |
commit | 73ee5c2fc4d9b3d793772a610ae02f4cf04e3ba3 (patch) | |
tree | 4ae6ca35bce1c641536c2c1bedfa06d6cc67b073 /lldb/packages/Python/lldbsuite | |
parent | 4b360292ede74b82f89aa95947bedb9ce18bdaee (diff) | |
download | bcm5719-llvm-73ee5c2fc4d9b3d793772a610ae02f4cf04e3ba3.tar.gz bcm5719-llvm-73ee5c2fc4d9b3d793772a610ae02f4cf04e3ba3.zip |
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.
llvm-svn: 289199
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py b/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py index 54e7b83c680..ad4252895fa 100644 --- a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py +++ b/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py @@ -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()} |