[Lldb-commits] [lldb] 6cd0e35 - Revert "[LLDB] Skip HW breakpoints test_step_until on Arm/Linux"
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 28 01:26:46 PDT 2021
Author: Muhammad Omair Javaid
Date: 2021-07-28T13:26:06+05:00
New Revision: 6cd0e35f43ac7aab8ff05acb4c5dfaa9071958d5
URL: https://github.com/llvm/llvm-project/commit/6cd0e35f43ac7aab8ff05acb4c5dfaa9071958d5
DIFF: https://github.com/llvm/llvm-project/commit/6cd0e35f43ac7aab8ff05acb4c5dfaa9071958d5.diff
LOG: Revert "[LLDB] Skip HW breakpoints test_step_until on Arm/Linux"
This reverts commit ab5b8ee1a7a18fe097419e21224ac4f15591bcd7.
This caused some failure on buildbots so reverting it for now.
Added:
Modified:
lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/TestRequireHWBreakpoints.py
Removed:
################################################################################
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 b629d678d08e6..f7787bbf68b12 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,7 +86,6 @@ 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."""
More information about the lldb-commits
mailing list