[Lldb-commits] [lldb] r115046 - /lldb/trunk/test/foundation/TestObjCMethods.py
Johnny Chen
johnny.chen at apple.com
Wed Sep 29 10:50:35 PDT 2010
Author: johnny
Date: Wed Sep 29 12:50:35 2010
New Revision: 115046
URL: http://llvm.org/viewvc/llvm-project?rev=115046&view=rev
Log:
Updated to reflect the updated tot r115023. Will be filing a bug next.
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=115046&r1=115045&r2=115046&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestObjCMethods.py (original)
+++ lldb/trunk/test/foundation/TestObjCMethods.py Wed Sep 29 12:50:35 2010
@@ -96,12 +96,12 @@
# Lookup objc data type MyString and evaluate some expressions.
self.expect("image lookup -t NSString", DATA_TYPES_DISPLAYED_CORRECTLY,
- substrs = ["@interface NSString : NSObject at end"])
+ substrs = ['name = "NSString"',
+ 'clang_type = "@interface NSString at end"'])
self.expect("image lookup -t MyString", DATA_TYPES_DISPLAYED_CORRECTLY,
- substrs = ["@interface MyString : NSObject",
- "NSString * str;",
- "NSDate * date;"])
+ substrs = ['name = "MyString"',
+ 'clang_type = "@interface MyString'])
self.expect("frame variable -s", VARIABLES_DISPLAYED_CORRECTLY,
substrs = ["ARG: (MyString *) self",
More information about the lldb-commits
mailing list