Add a test case for exercising breakpoint conditions using the lldb command:

    breakpoint modify -c 'val == 3' 1

after:

    breakpoint set -n c

which sets a breakpoint on function 'c'.  The breakpoint should only stop if
expression 'val == 3' evaluates to true.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116607 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/lldbtest.py b/test/lldbtest.py
index 5445d9c..5659403 100644
--- a/test/lldbtest.py
+++ b/test/lldbtest.py
@@ -491,7 +491,7 @@
             with recording(self, trace) as sbuf:
                 print >> sbuf, "runCmd:", cmd
                 if not check:
-                    print >> sbuf, "checking of return status not required"
+                    print >> sbuf, "check of return status not required"
                 if self.res.Succeeded():
                     print >> sbuf, "output:", self.res.GetOutput()
                 else: