[lldb] Require x86 for unwind no-return test

The core file used is built for i386 so we
need the x86 backend to be able to load it.

Reviewed By: labath

Differential Revision: https://reviews.llvm.org/D100195
This commit is contained in:
David Spickett 2021-04-09 13:23:26 +00:00
parent 96c82166b6
commit a1f3187ca8
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ class TestNoreturnModuleEnd(TestBase):
NO_DEBUG_INFO_TESTCASE = True NO_DEBUG_INFO_TESTCASE = True
mydir = TestBase.compute_mydir(__file__) mydir = TestBase.compute_mydir(__file__)
@skipIfLLVMTargetMissing("X86")
def test(self): def test(self):
target = self.dbg.CreateTarget("test.out") target = self.dbg.CreateTarget("test.out")
process = target.LoadCore("test.core") process = target.LoadCore("test.core")