Added an example 'frame variable' output to demonstrate how the generic_type_tester
groks the data type of the variable.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@115070 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/types/AbstractBase.py b/test/types/AbstractBase.py
index 93aaa4d..b92303d 100644
--- a/test/types/AbstractBase.py
+++ b/test/types/AbstractBase.py
@@ -72,6 +72,11 @@
             
             # The input type is in a canonical form as a set named atoms.
             # The display type string must conatin each and every element.
+            #
+            # Example:
+            #     runCmd: frame variable a_array_bounded[0]
+            #     output: (char) a_array_bounded[0] = 'a'
+            #
             dt = re.match("^\((.*)\)", output).group(1)
 
             # Expect the display type string to contain each and every atoms.