Updated to reflect the updated tot r115023. Will be filing a bug next.

llvm-svn: 115046
This commit is contained in:
Johnny Chen 2010-09-29 17:50:35 +00:00
parent f7c51c33f9
commit 620f9d1548
1 changed files with 4 additions and 4 deletions

View File

@ -96,12 +96,12 @@ class FoundationTestCase(TestBase):
# Lookup objc data type MyString and evaluate some expressions.
self.expect("image lookup -t NSString", DATA_TYPES_DISPLAYED_CORRECTLY,
substrs = ["@interface NSString : NSObject@end"])
substrs = ['name = "NSString"',
'clang_type = "@interface NSString@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",