[Lldb-commits] [lldb] r115070 - /lldb/trunk/test/types/AbstractBase.py

Johnny Chen johnny.chen at apple.com
Wed Sep 29 12:12:10 PDT 2010


Author: johnny
Date: Wed Sep 29 14:12:10 2010
New Revision: 115070

URL: http://llvm.org/viewvc/llvm-project?rev=115070&view=rev
Log:
Added an example 'frame variable' output to demonstrate how the generic_type_tester
groks the data type of the variable.

Modified:
    lldb/trunk/test/types/AbstractBase.py

Modified: lldb/trunk/test/types/AbstractBase.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/AbstractBase.py?rev=115070&r1=115069&r2=115070&view=diff
==============================================================================
--- lldb/trunk/test/types/AbstractBase.py (original)
+++ lldb/trunk/test/types/AbstractBase.py Wed Sep 29 14:12:10 2010
@@ -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.





More information about the lldb-commits mailing list