[Lldb-commits] [lldb] r114652 - /lldb/trunk/test/function_types/TestFunctionTypes.py

Johnny Chen johnny.chen at apple.com
Thu Sep 23 09:04:46 PDT 2010


Author: johnny
Date: Thu Sep 23 11:04:46 2010
New Revision: 114652

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

Modified:
    lldb/trunk/test/function_types/TestFunctionTypes.py

Modified: lldb/trunk/test/function_types/TestFunctionTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/function_types/TestFunctionTypes.py?rev=114652&r1=114651&r2=114652&view=diff
==============================================================================
--- lldb/trunk/test/function_types/TestFunctionTypes.py (original)
+++ lldb/trunk/test/function_types/TestFunctionTypes.py Thu Sep 23 11:04:46 2010
@@ -42,7 +42,7 @@
 
         # Check that the 'callback' variable display properly.
         self.expect("frame variable callback", VARIABLES_DISPLAYED_CORRECTLY,
-            startstr = '(int (*)(char const *)) callback =')
+            startstr = '(int (*)(const char *)) callback =')
 
         # And that we can break on the callback function.
         self.runCmd("breakpoint set -n string_not_empty", BREAKPOINT_CREATED)





More information about the lldb-commits mailing list