diff options
Diffstat (limited to 'lldb/test/breakpoint_conditions/TestBreakpointConditions.py')
-rw-r--r-- | lldb/test/breakpoint_conditions/TestBreakpointConditions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py index 80255a221f1..b168c8104e2 100644 --- a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py +++ b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py @@ -140,7 +140,7 @@ class BreakpointConditionsTestCase(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) |