diff --git a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py index 2341aa27e66b0..963ba060f949a 100644 --- a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py +++ b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py @@ -88,6 +88,7 @@ def test_scripted_process_and_scripted_thread(self): for idx, reg in enumerate(registers, start=1): self.assertEqual(idx, int(reg.value, 16)) + @skipIfDarwin @skipUnlessDarwin def test_launch_scripted_process_stack_frames(self): """Test that we can launch an lldb scripted process from the command @@ -113,11 +114,6 @@ def test_launch_scripted_process_stack_frames(self): self.assertEqual(process.GetProcessID(), 42) self.assertEqual(process.GetNumThreads(), 1) - error = lldb.SBError() - hello_world = "Hello, world!" - memory_read = process.ReadCStringFromMemory(0x50000000000, - len(hello_world) + 1, # NULL byte - error) thread = process.GetSelectedThread() self.assertTrue(thread, "Invalid thread.") self.assertEqual(thread.GetThreadID(), 0x19)