[Lldb-commits] [lldb] r130963 - /lldb/trunk/test/lldbtest.py
Johnny Chen
johnny.chen at apple.com
Thu May 5 16:20:24 PDT 2011
Author: johnny
Date: Thu May 5 18:18:53 2011
New Revision: 130963
URL: http://llvm.org/viewvc/llvm-project?rev=130963&view=rev
Log:
Add comment for self.child_in_script_interpreter.
Modified:
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=130963&r1=130962&r2=130963&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Thu May 5 18:18:53 2011
@@ -526,9 +526,12 @@
# We want our debugger to be synchronous.
self.dbg.SetAsync(False)
- # This is for the case of directly spawning 'lldb' and interacting with it
- # using pexpect.
+ # This is for the case of directly spawning 'lldb' and interacting with
+ # it using pexpect.
self.child = None
+ # If the child is interacting with the embedded script interpreter,
+ # there are two exits required, first one to quit the embedded script
+ # interpreter and second one to quit the lldb command interpreter.
self.child_in_script_interpreter = False
# There is no process associated with the debugger as yet.
More information about the lldb-commits
mailing list