diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-09-07 18:55:50 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-09-07 18:55:50 +0000 |
| commit | ea772bbba09194d48965f39d0f7635bde22e3d2c (patch) | |
| tree | ace23e6fb6e549a06e4392331337989800dfdde3 /lldb/test/lldbtest.py | |
| parent | 02b701f558cde158ece9135a030bbbcc1bcbf022 (diff) | |
| download | bcm5719-llvm-ea772bbba09194d48965f39d0f7635bde22e3d2c.tar.gz bcm5719-llvm-ea772bbba09194d48965f39d0f7635bde22e3d2c.zip | |
The output for term-width setting has single quotes around the (int) value.
And added a trace output for the stop function name to breakAfterLaunch() method.
llvm-svn: 113251
Diffstat (limited to 'lldb/test/lldbtest.py')
| -rw-r--r-- | lldb/test/lldbtest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index 40a8903bda9..f9456208d5d 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -438,6 +438,8 @@ class TestBase(unittest2.TestCase): if SR == StopReasonEnum("Breakpoint"): frame = thread.GetFrameAtIndex(0) name = frame.GetFunction().GetName() + if trace: + print >> sys.stderr, "function =", name if (name == func): # We got what we want; now break out of the loop. return True |

