[Lldb-commits] [lldb] a1f3187 - [lldb] Require x86 for unwind no-return test

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 13 01:51:12 PDT 2021


Author: David Spickett
Date: 2021-04-13T08:51:04Z
New Revision: a1f3187ca8a39a62f4a430da823c01aa7874b0d3

URL: https://github.com/llvm/llvm-project/commit/a1f3187ca8a39a62f4a430da823c01aa7874b0d3
DIFF: https://github.com/llvm/llvm-project/commit/a1f3187ca8a39a62f4a430da823c01aa7874b0d3.diff

LOG: [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

Added: 
    

Modified: 
    lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py b/lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
index 552fdef4a471..d242cb75fd8d 100644
--- a/lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
+++ b/lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
@@ -15,6 +15,7 @@ class TestNoreturnModuleEnd(TestBase):
     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")


        


More information about the lldb-commits mailing list