From 2c48dbec9628a5aa3a886cbce43fb3ace7e17bd1 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Wed, 29 Sep 2010 19:12:10 +0000 Subject: [PATCH] Added an example 'frame variable' output to demonstrate how the generic_type_tester groks the data type of the variable. llvm-svn: 115070 --- lldb/test/types/AbstractBase.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lldb/test/types/AbstractBase.py b/lldb/test/types/AbstractBase.py index 93aaa4d12f60..b92303d766b3 100644 --- a/lldb/test/types/AbstractBase.py +++ b/lldb/test/types/AbstractBase.py @@ -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.