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.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@113251 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/lldbtest.py b/test/lldbtest.py
index 40a8903..f945620 100644
--- a/test/lldbtest.py
+++ b/test/lldbtest.py
@@ -438,6 +438,8 @@
             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