diff options
Diffstat (limited to 'lldb/test/hello_world/TestHelloWorld.py')
-rw-r--r-- | lldb/test/hello_world/TestHelloWorld.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/hello_world/TestHelloWorld.py b/lldb/test/hello_world/TestHelloWorld.py index 7b496be041e..b3ce2d5e750 100644 --- a/lldb/test/hello_world/TestHelloWorld.py +++ b/lldb/test/hello_world/TestHelloWorld.py @@ -53,7 +53,7 @@ class HelloWorldTestCase(TestBase): if useLaunchAPI: 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) # The following isn't needed anymore, rdar://8364687 is fixed. # # Apply some dances after LaunchProcess() in order to break at "main". |