Added some commonly used assert messages to the lldbtest.py module which houses
the TestBase.  Modified TestArrayTypes.py to use the assert messages.  Other
files to follow.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@110611 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/lldbtest.py b/test/lldbtest.py
index daea516..d0e9032 100644
--- a/test/lldbtest.py
+++ b/test/lldbtest.py
@@ -31,6 +31,24 @@
 import unittest2
 import lldb
 
+#
+# Some commonly used assert messages.
+#
+
+CURRENT_EXECUTABLE_SET = "Current executable set successfully"
+
+COMMAND_HANDLED = "Command handled successfully"
+
+BREAK_POINT_CREATED = "Breakpoint created successfully"
+
+BREAK_POINT_HIT_ONCE = "Breakpoint resolved with hit cout = 1"
+
+STOPPED_DUE_TO_BREAKPOINT = "Process state is stopped due to breakpoint"
+
+STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in"
+
+VARIABLES_DISPLAYED_CORRECTLY = "Show specified variable(s) correctly"
+
 class TestBase(unittest2.TestCase):
     """This LLDB abstract base class is meant to be subclassed."""