[Lldb-commits] [lldb] r114649 - /lldb/trunk/test/global_variables/TestGlobalVariables.py

Johnny Chen johnny.chen at apple.com
Thu Sep 23 08:57:32 PDT 2010


Author: johnny
Date: Thu Sep 23 10:57:32 2010
New Revision: 114649

URL: http://llvm.org/viewvc/llvm-project?rev=114649&view=rev
Log:
Changed 'frame variable' output to match '(const char *)' instead of '(char const *)'.

Modified:
    lldb/trunk/test/global_variables/TestGlobalVariables.py

Modified: lldb/trunk/test/global_variables/TestGlobalVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/global_variables/TestGlobalVariables.py?rev=114649&r1=114648&r2=114649&view=diff
==============================================================================
--- lldb/trunk/test/global_variables/TestGlobalVariables.py (original)
+++ lldb/trunk/test/global_variables/TestGlobalVariables.py Thu Sep 23 10:57:32 2010
@@ -42,11 +42,11 @@
 
         # Check that GLOBAL scopes are indicated for the variables.
         self.expect("frame variable -s -g -a", VARIABLES_DISPLAYED_CORRECTLY,
-            substrs = ['GLOBAL: (char const *) g_file_static_cstr',
-                       '"g_file_static_cstr"',
-                       'GLOBAL: (int) g_file_global_int = 42',
-                       'GLOBAL: (char const *) g_file_global_cstr',
-                       '"g_file_global_cstr"'])
+            substrs = ['GLOBAL: (int) g_file_global_int = 42',
+                       'GLOBAL: (const char *) g_file_global_cstr',
+                       '"g_file_global_cstr"',
+                       'GLOBAL: (const char *) g_file_static_cstr',
+                       '"g_file_static_cstr"'])
 
 
 if __name__ == '__main__':





More information about the lldb-commits mailing list