commit | 28156539a9df3fa0d9db47c405c0006fcee9f77f | [log] [tgz] |
---|---|---|
author | Felipe de Azevedo Piovezan <fpiovezan@apple.com> | Thu May 08 13:14:40 2025 -0700 |
committer | Felipe de Azevedo Piovezan <fpiovezan@apple.com> | Thu May 08 13:14:40 2025 -0700 |
tree | d69c67de45b2ede2ac4afd9d01ff8ac679c59244 | |
parent | 02f61ab46b1608c26fd72862d4b46cbb7b034889 [diff] |
[lldb] Disable test using GetControlFlowKind on arm
diff --git a/lldb/test/API/functionalities/step_scripted/TestStepScripted.py b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py index cec2901..5276369 100644 --- a/lldb/test/API/functionalities/step_scripted/TestStepScripted.py +++ b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
@@ -70,6 +70,7 @@ 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()