diff --git a/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/TestRequireHWBreakpoints.py b/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/TestRequireHWBreakpoints.py index f7787bbf68b12..b629d678d08e6 100644 --- a/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/TestRequireHWBreakpoints.py +++ b/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/TestRequireHWBreakpoints.py @@ -27,7 +27,7 @@ def test_breakpoint(self): breakpoint = target.BreakpointCreateByLocation("main.c", 1) self.assertTrue(breakpoint.IsHardware()) - @expectedFailureIfFn(supports_hw_breakpoints) + @expectedFailureIfFn(supports_hw_breakpoints) def test_step_range(self): """Test stepping when hardware breakpoints are required.""" self.build() @@ -86,6 +86,7 @@ def test_step_over(self): 'error: Could not create hardware breakpoint for thread plan.' ]) + @skipIf(oslist=["linux"], archs=["arm"]) @expectedFailureIfFn(supports_hw_breakpoints) def test_step_until(self): """Test stepping until when hardware breakpoints are required."""