[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()