[Lldb-commits] [lldb] 4f32077 - Revert "[lldb] skip ReverseContinue tests on Darwin"
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 10 16:24:44 PDT 2024
Author: Jason Molenda
Date: 2024-10-10T16:24:38-07:00
New Revision: 4f320778148ba481881eb53ba065ed2a9d9bbc03
URL: https://github.com/llvm/llvm-project/commit/4f320778148ba481881eb53ba065ed2a9d9bbc03
DIFF: https://github.com/llvm/llvm-project/commit/4f320778148ba481881eb53ba065ed2a9d9bbc03.diff
LOG: Revert "[lldb] skip ReverseContinue tests on Darwin"
This reverts commit c686eeb7fcc89673909e7e1f0a0a09a0da269d28.
Added:
Modified:
lldb/test/API/functionalities/reverse-execution/TestReverseContinueBreakpoints.py
lldb/test/API/functionalities/reverse-execution/TestReverseContinueNotSupported.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/reverse-execution/TestReverseContinueBreakpoints.py b/lldb/test/API/functionalities/reverse-execution/TestReverseContinueBreakpoints.py
index 8b53d86704f119..b37578fbd82468 100644
--- a/lldb/test/API/functionalities/reverse-execution/TestReverseContinueBreakpoints.py
+++ b/lldb/test/API/functionalities/reverse-execution/TestReverseContinueBreakpoints.py
@@ -11,11 +11,9 @@
class TestReverseContinueBreakpoints(ReverseTestBase):
NO_DEBUG_INFO_TESTCASE = True
- @skipIfDarwin # No Darwin ProcessNative impl for lldb-server
def test_reverse_continue(self):
self.reverse_continue_internal(async_mode=False)
- @skipIfDarwin # No Darwin ProcessNative impl for lldb-server
def test_reverse_continue_async(self):
self.reverse_continue_internal(async_mode=True)
@@ -39,11 +37,9 @@ def reverse_continue_internal(self, async_mode):
self.assertState(process.GetState(), lldb.eStateExited)
self.assertEqual(process.GetExitStatus(), 0)
- @skipIfDarwin # No Darwin ProcessNative impl for lldb-server
def test_reverse_continue_breakpoint(self):
self.reverse_continue_breakpoint_internal(async_mode=False)
- @skipIfDarwin # No Darwin ProcessNative impl for lldb-server
def test_reverse_continue_breakpoint_async(self):
self.reverse_continue_breakpoint_internal(async_mode=True)
@@ -58,11 +54,9 @@ def reverse_continue_breakpoint_internal(self, async_mode):
threads_now = lldbutil.get_threads_stopped_at_breakpoint(process, trigger_bkpt)
self.assertEqual(threads_now, initial_threads)
- @skipIfDarwin # No Darwin ProcessNative impl for lldb-server
def test_reverse_continue_skip_breakpoint(self):
self.reverse_continue_skip_breakpoint_internal(async_mode=False)
- @skipIfDarwin # No Darwin ProcessNative impl for lldb-server
def test_reverse_continue_skip_breakpoint_async(self):
self.reverse_continue_skip_breakpoint_internal(async_mode=True)
diff --git a/lldb/test/API/functionalities/reverse-execution/TestReverseContinueNotSupported.py b/lldb/test/API/functionalities/reverse-execution/TestReverseContinueNotSupported.py
index 8a20f0ffdcf660..d610761b8cb0bc 100644
--- a/lldb/test/API/functionalities/reverse-execution/TestReverseContinueNotSupported.py
+++ b/lldb/test/API/functionalities/reverse-execution/TestReverseContinueNotSupported.py
@@ -8,7 +8,6 @@
class TestReverseContinueNotSupported(TestBase):
NO_DEBUG_INFO_TESTCASE = True
- @skipIfDarwin # No Darwin ProcessNative impl for lldb-server
def test_reverse_continue_not_supported(self):
self.build()
exe = self.getBuildArtifact("a.out")
More information about the lldb-commits
mailing list