forked from OSchip/llvm-project
Updated to reflect the updated tot r115023. Will be filing a bug next.
llvm-svn: 115046
This commit is contained in:
parent
f7c51c33f9
commit
620f9d1548
|
@ -96,12 +96,12 @@ class FoundationTestCase(TestBase):
|
||||||
# Lookup objc data type MyString and evaluate some expressions.
|
# Lookup objc data type MyString and evaluate some expressions.
|
||||||
|
|
||||||
self.expect("image lookup -t NSString", DATA_TYPES_DISPLAYED_CORRECTLY,
|
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,
|
self.expect("image lookup -t MyString", DATA_TYPES_DISPLAYED_CORRECTLY,
|
||||||
substrs = ["@interface MyString : NSObject",
|
substrs = ['name = "MyString"',
|
||||||
"NSString * str;",
|
'clang_type = "@interface MyString'])
|
||||||
"NSDate * date;"])
|
|
||||||
|
|
||||||
self.expect("frame variable -s", VARIABLES_DISPLAYED_CORRECTLY,
|
self.expect("frame variable -s", VARIABLES_DISPLAYED_CORRECTLY,
|
||||||
substrs = ["ARG: (MyString *) self",
|
substrs = ["ARG: (MyString *) self",
|
||||||
|
|
Loading…
Reference in New Issue