Skip to content

Commit 984f2c2

Browse files
committed
[lldb/test] Disable 'TestScriptedProcess.py' on macOS
This is disabling 'TestScriptedProcess.py' on macOS since it fails on Green Dragon: https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/35974 Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent 8778f15 commit 984f2c2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def test_scripted_process_and_scripted_thread(self):
8888
for idx, reg in enumerate(registers, start=1):
8989
self.assertEqual(idx, int(reg.value, 16))
9090

91+
@skipIfDarwin
9192
@skipUnlessDarwin
9293
def test_launch_scripted_process_stack_frames(self):
9394
"""Test that we can launch an lldb scripted process from the command
@@ -113,11 +114,6 @@ def test_launch_scripted_process_stack_frames(self):
113114
self.assertEqual(process.GetProcessID(), 42)
114115
self.assertEqual(process.GetNumThreads(), 1)
115116

116-
error = lldb.SBError()
117-
hello_world = "Hello, world!"
118-
memory_read = process.ReadCStringFromMemory(0x50000000000,
119-
len(hello_world) + 1, # NULL byte
120-
error)
121117
thread = process.GetSelectedThread()
122118
self.assertTrue(thread, "Invalid thread.")
123119
self.assertEqual(thread.GetThreadID(), 0x19)

0 commit comments

Comments
 (0)