Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit a005ac8

Browse files
author
Devang Patel
committed
Simplify.
git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@134564 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 1cef339 commit a005ac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CollectDebugInfoUsingLLDB.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def stopped_at_breakpoint (process):
202202
# Launch the process. Since we specified synchronous mode, we won't return
203203
# from this function until we hit the breakpoint at main
204204
sberror = lldb.SBError()
205-
process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, sberror)
205+
process = target.LaunchSimple(None, None, None)
206206
# Make sure the launch went ok
207207
while stopped_at_breakpoint(process):
208208
# print "stopped at a bp"

0 commit comments

Comments
 (0)