diff options
Diffstat (limited to 'lldb/test/foundation/TestObjCMethods.py')
| -rw-r--r-- | lldb/test/foundation/TestObjCMethods.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/test/foundation/TestObjCMethods.py b/lldb/test/foundation/TestObjCMethods.py index 9bbf1c08882..a51be3d28d3 100644 --- a/lldb/test/foundation/TestObjCMethods.py +++ b/lldb/test/foundation/TestObjCMethods.py @@ -140,7 +140,7 @@ class FoundationTestCase(TestBase): 'NSString * str;', 'NSDate * date;']) - self.expect("frame variable -t -s", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("frame variable -T -s", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["ARG: (MyString *) self"], patterns = ["ARG: \(.*\) _cmd", "(struct objc_selector *)|(SEL)"]) @@ -152,16 +152,16 @@ class FoundationTestCase(TestBase): # rdar://problem/8492646 # test/foundation fails after updating to tot r115023 # self->str displays nothing as output - self.expect("frame variable -t self->str", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("frame variable -T self->str", VARIABLES_DISPLAYED_CORRECTLY, startstr = "(NSString *) self->str") # rdar://problem/8447030 # 'frame variable self->date' displays the wrong data member - self.expect("frame variable -t self->date", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("frame variable -T self->date", VARIABLES_DISPLAYED_CORRECTLY, startstr = "(NSDate *) self->date") # This should display the str and date member fields as well. - self.expect("frame variable -t *self", VARIABLES_DISPLAYED_CORRECTLY, + self.expect("frame variable -T *self", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["(MyString) *self", "(NSString *) str", "(NSDate *) date"]) |

