diff options
Diffstat (limited to 'lldb/test/bitfields/TestBitfields.py')
-rw-r--r-- | lldb/test/bitfields/TestBitfields.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/bitfields/TestBitfields.py index 3f2fc4ed1c3..9396b89f6a7 100644 --- a/lldb/test/bitfields/TestBitfields.py +++ b/lldb/test/bitfields/TestBitfields.py @@ -95,7 +95,7 @@ class BitfieldsTestCase(TestBase): self.assertTrue(breakpoint.IsValid(), VALID_BREAKPOINT) 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.assertTrue(self.process.IsValid(), PROCESS_IS_VALID) # The stop reason of the thread should be breakpoint. |