diff options
Diffstat (limited to 'lldb/test/python_api')
-rw-r--r-- | lldb/test/python_api/event/TestEvents.py | 10 | ||||
-rw-r--r-- | lldb/test/python_api/frame/TestFrames.py | 2 | ||||
-rw-r--r-- | lldb/test/python_api/symbol-context/TestSymbolContext.py | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lldb/test/python_api/event/TestEvents.py b/lldb/test/python_api/event/TestEvents.py index bb59b2ff780..624cb0c5369 100644 --- a/lldb/test/python_api/event/TestEvents.py +++ b/lldb/test/python_api/event/TestEvents.py @@ -59,9 +59,12 @@ class EventAPITestCase(TestBase): breakpoint.GetNumLocations() == 1, VALID_BREAKPOINT) + # Get the debugger listener. + listener = self.dbg.GetListener() + # Now launch the process, and do not stop at entry point. error = lldb.SBError() - self.process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) + self.process = target.Launch (listener, None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) self.process = target.GetProcess() self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID) @@ -74,9 +77,6 @@ class EventAPITestCase(TestBase): event = lldb.SBEvent() self.assertFalse(event.IsValid(), "Event should not be valid initially") - # Get the debugger listener. - listener = self.dbg.GetListener() - # Create MyListeningThread to wait for any kind of event. import threading class MyListeningThread(threading.Thread): @@ -123,7 +123,7 @@ class EventAPITestCase(TestBase): # Now launch the process, and do not stop at the entry point. error = lldb.SBError() - self.process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) + self.process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) self.process = target.GetProcess() self.assertTrue(self.process.GetState() == lldb.eStateStopped, diff --git a/lldb/test/python_api/frame/TestFrames.py b/lldb/test/python_api/frame/TestFrames.py index bd64a4ac7fc..908a04919b8 100644 --- a/lldb/test/python_api/frame/TestFrames.py +++ b/lldb/test/python_api/frame/TestFrames.py @@ -45,7 +45,7 @@ class FrameAPITestCase(TestBase): # cases. We want the inferior to run till it exits and there's no need # for the testing framework to kill the inferior upon tearDown(). error = lldb.SBError() - process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) + process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) process = target.GetProcess() self.assertTrue(process.GetState() == lldb.eStateStopped, diff --git a/lldb/test/python_api/symbol-context/TestSymbolContext.py b/lldb/test/python_api/symbol-context/TestSymbolContext.py index 357387fe4ca..96d835695d0 100644 --- a/lldb/test/python_api/symbol-context/TestSymbolContext.py +++ b/lldb/test/python_api/symbol-context/TestSymbolContext.py @@ -48,7 +48,7 @@ class SymbolContextAPITestCase(TestBase): # Now launch the process, and do not stop at entry point. error = lldb.SBError() - self.process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) + self.process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error) self.process = target.GetProcess() self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID) |