diff options
Diffstat (limited to 'lldb/test/python_api/frame/TestFrames.py')
-rw-r--r-- | lldb/test/python_api/frame/TestFrames.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |