[Lldb-commits] [lldb] cb0b961 - [lldb] Disable test using GetControlFlowKind on arm

Felipe de Azevedo Piovezan via lldb-commits lldb-commits at lists.llvm.org
Thu May 8 08:11:53 PDT 2025


Author: Felipe de Azevedo Piovezan
Date: 2025-05-08T08:11:17-07:00
New Revision: cb0b9614f8ca7ffcd5f091b1c9990adfd6cb7e33

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

LOG: [lldb] Disable test using GetControlFlowKind on arm

This is only implemented for x86.
Originally introduced in: https://github.com/llvm/llvm-project/pull/137904

Added: 
    

Modified: 
    lldb/test/API/functionalities/step_scripted/TestStepScripted.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/step_scripted/TestStepScripted.py b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
index 54bc154590ed0..cec2901aa0369 100644
--- a/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
+++ b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
@@ -59,6 +59,7 @@ def run_until_branch_instruction(self):
         )
         return (target, process, thread, bkpt)
 
+    @skipIf(archs=no_match(["x86_64"]))
     def test_step_single_instruction(self):
         (target, process, thread, bkpt) = self.run_until_branch_instruction()
 


        


More information about the lldb-commits mailing list