From c1e4a0d4dbe9d68113a877764c794407bdd65622 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Mon, 20 Mar 2023 16:47:07 -0700 Subject: [PATCH] Follow on to 2c7abc83f605b2d3b1062f28422eeff81278ecd5. I didn't refactor the test that's failing on arm64 correctly so it failed everywhere. Looks like the step test passes on other aarch64 systems as well as Darwin. Turn off the xfail and see how far that gets. --- .../watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py b/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py index 52fc899..fd70bd6 100644 --- a/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py +++ b/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py @@ -36,12 +36,6 @@ class TestStepOverWatchpoint(TestBase): return (target, process, thread, read_watchpoint) - @expectedFailureAll( - oslist=["freebsd", "linux"], - archs=[ - 'aarch64', - 'arm'], - bugnumber="llvm.org/pr26031") # Read-write watchpoints not supported on SystemZ @expectedFailureAll(archs=['s390x']) @add_test_categories(["basic_process"]) @@ -69,8 +63,6 @@ class TestStepOverWatchpoint(TestBase): def test_step_instruction(self): target, process, thread, wp = self.get_to_start("Set breakpoint after call") - self.assertEquals(thread.GetStopDescription(20), 'step over') - self.step_inst_for_watchpoint(1) write_value = frame.FindValue('g_watch_me_write', -- 2.7.4