diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-05-05 23:18:53 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-05-05 23:18:53 +0000 |
| commit | 87e8dd1077db776e4c69b8bbcc792bd4acd02266 (patch) | |
| tree | 9737ce0dd9a7ff630fc2e2e779fd73c8068c662c | |
| parent | 14034026d6f1f45a4694e878a94089730be8ec5c (diff) | |
| download | bcm5719-llvm-87e8dd1077db776e4c69b8bbcc792bd4acd02266.tar.gz bcm5719-llvm-87e8dd1077db776e4c69b8bbcc792bd4acd02266.zip | |
Add comment for self.child_in_script_interpreter.
llvm-svn: 130963
| -rw-r--r-- | lldb/test/lldbtest.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index fd4a98c54c7..6e662201e40 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -526,9 +526,12 @@ class TestBase(unittest2.TestCase): # 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. |

