Added an example 'frame variable' output to demonstrate how the generic_type_tester

groks the data type of the variable.

llvm-svn: 115070
This commit is contained in:
Johnny Chen
2010-09-29 19:12:10 +00:00
parent 3c03027ecf
commit 2c48dbec96

View File

@@ -72,6 +72,11 @@ class GenericTester(TestBase):
# 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.