[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

GitOrigin-RevId: a1f3187ca8a39a62f4a430da823c01aa7874b0d3
diff --git a/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py b/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
index 552fdef..d242cb7 100644
--- a/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
+++ b/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
@@ -15,6 +15,7 @@
     NO_DEBUG_INFO_TESTCASE = True
     mydir = TestBase.compute_mydir(__file__)
 
+    @skipIfLLVMTargetMissing("X86")
     def test(self):
         target = self.dbg.CreateTarget("test.out")
         process = target.LoadCore("test.core")