From b505ed9d313653782b81bbc97979c98edb205558 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 29 Sep 2021 22:32:21 -0700 Subject: [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. --- lldb/test/API/python_api/process/TestProcessAPI.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'lldb/test/API/python_api/process/TestProcessAPI.py') 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() -- cgit v1.2.3