[Lldb-commits] [lldb] r121907 - /lldb/trunk/test/foundation/TestObjCMethods.py

Johnny Chen johnny.chen at apple.com
Wed Dec 15 14:50:54 PST 2010


Author: johnny
Date: Wed Dec 15 16:50:54 2010
New Revision: 121907

URL: http://llvm.org/viewvc/llvm-project?rev=121907&view=rev
Log:
Fix one of the golden output of "frame variable -t *self" to be:

    "(MyString) *self"

Modified:
    lldb/trunk/test/foundation/TestObjCMethods.py

Modified: lldb/trunk/test/foundation/TestObjCMethods.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestObjCMethods.py?rev=121907&r1=121906&r2=121907&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestObjCMethods.py (original)
+++ lldb/trunk/test/foundation/TestObjCMethods.py Wed Dec 15 16:50:54 2010
@@ -162,7 +162,7 @@
 
         # This should display the str and date member fields as well.
         self.expect("frame variable -t *self", VARIABLES_DISPLAYED_CORRECTLY,
-            substrs = ["(MyString *) self",
+            substrs = ["(MyString) *self",
                        "(NSString *) str",
                        "(NSDate *) date"])
 





More information about the lldb-commits mailing list