File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
lldb/test/API/functionalities/scripted_process Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ def test_scripted_process_and_scripted_thread(self):
88
88
for idx , reg in enumerate (registers , start = 1 ):
89
89
self .assertEqual (idx , int (reg .value , 16 ))
90
90
91
+ @skipIfDarwin
91
92
@skipUnlessDarwin
92
93
def test_launch_scripted_process_stack_frames (self ):
93
94
"""Test that we can launch an lldb scripted process from the command
@@ -113,11 +114,6 @@ def test_launch_scripted_process_stack_frames(self):
113
114
self .assertEqual (process .GetProcessID (), 42 )
114
115
self .assertEqual (process .GetNumThreads (), 1 )
115
116
116
- error = lldb .SBError ()
117
- hello_world = "Hello, world!"
118
- memory_read = process .ReadCStringFromMemory (0x50000000000 ,
119
- len (hello_world ) + 1 , # NULL byte
120
- error )
121
117
thread = process .GetSelectedThread ()
122
118
self .assertTrue (thread , "Invalid thread." )
123
119
self .assertEqual (thread .GetThreadID (), 0x19 )
You can’t perform that action at this time.
0 commit comments