summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/process/TestProcessAPI.py
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2021-09-29 22:32:21 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2021-09-30 10:47:19 -0700
commitb505ed9d313653782b81bbc97979c98edb205558 (patch)
tree6adf1402c0a17dc7c9bbb44a922ea7d6ee3ef96a /lldb/test/API/python_api/process/TestProcessAPI.py
parent244aa7f7358da791a231ffd4efd849f166050c4b (diff)
[lldb] Remove support for replaying the test suite from a reproducer
This patch removes the infrastructure to replay the test suite from a reproducer, as well as the modifications made to the individual tests.
Diffstat (limited to 'lldb/test/API/python_api/process/TestProcessAPI.py')
-rw-r--r--lldb/test/API/python_api/process/TestProcessAPI.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/test/API/python_api/process/TestProcessAPI.py b/lldb/test/API/python_api/process/TestProcessAPI.py
index 790d794890d6..bfa1a22b9184 100644
--- a/lldb/test/API/python_api/process/TestProcessAPI.py
+++ b/lldb/test/API/python_api/process/TestProcessAPI.py
@@ -23,7 +23,6 @@ class ProcessAPITestCase(TestBase):
"main.cpp",
"// Set break point at this line and check variable 'my_char'.")
- @skipIfReproducer # SBProcess::ReadMemory is not instrumented.
def test_read_memory(self):
"""Test Python SBProcess.ReadMemory() API."""
self.build()
@@ -121,7 +120,6 @@ class ProcessAPITestCase(TestBase):
self.fail(
"Result from SBProcess.ReadUnsignedFromMemory() does not match our expected output")
- @skipIfReproducer # SBProcess::WriteMemory is not instrumented.
def test_write_memory(self):
"""Test Python SBProcess.WriteMemory() API."""
self.build()
@@ -180,7 +178,6 @@ class ProcessAPITestCase(TestBase):
exe=False,
startstr=b'a')
- @skipIfReproducer # SBProcess::WriteMemory is not instrumented.
def test_access_my_int(self):
"""Test access 'my_int' using Python SBProcess.GetByteOrder() and other APIs."""
self.build()