diff options
Diffstat (limited to 'lldb/test/bitfields/TestBitfields.py')
| -rw-r--r-- | lldb/test/bitfields/TestBitfields.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/bitfields/TestBitfields.py index dc736b5207c..3f2fc4ed1c3 100644 --- a/lldb/test/bitfields/TestBitfields.py +++ b/lldb/test/bitfields/TestBitfields.py @@ -94,7 +94,8 @@ class BitfieldsTestCase(TestBase): breakpoint = target.BreakpointCreateByLocation("main.c", self.line) self.assertTrue(breakpoint.IsValid(), VALID_BREAKPOINT) - self.process = target.LaunchProcess([], [], os.ctermid(), False, 0) + error = lldb.SBError() + self.process = target.Launch (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. |

