[Lldb-commits] [lldb] 2815653 - [lldb] Disable test using GetControlFlowKind on arm
Felipe de Azevedo Piovezan via lldb-commits
lldb-commits at lists.llvm.org
Thu May 8 13:15:21 PDT 2025
Author: Felipe de Azevedo Piovezan
Date: 2025-05-08T13:14:40-07:00
New Revision: 28156539a9df3fa0d9db47c405c0006fcee9f77f
URL: https://github.com/llvm/llvm-project/commit/28156539a9df3fa0d9db47c405c0006fcee9f77f
DIFF: https://github.com/llvm/llvm-project/commit/28156539a9df3fa0d9db47c405c0006fcee9f77f.diff
LOG: [lldb] Disable test using GetControlFlowKind on arm
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 cec2901aa0369..52763694541ec 100644
--- a/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
+++ b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
@@ -70,6 +70,7 @@ def test_step_single_instruction(self):
frame = thread.GetFrameAtIndex(0)
self.assertEqual("foo", frame.GetFunctionName())
+ @skipIf(archs=no_match(["x86_64"]))
def test_step_single_instruction_with_step_over(self):
(target, process, thread, bkpt) = self.run_until_branch_instruction()
More information about the lldb-commits
mailing list