diff options
| -rw-r--r-- | lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py index de5c3f29902..860ff469921 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py @@ -370,7 +370,7 @@ class ObjCDataFormatterTestCase(TestBase):      def nsstring_data_formatter_commands(self):          self.expect('frame variable str0 str1 str2 str3 str4 str5 str6 str8 str9 str10 str11 label1 label2 processName str12',                      substrs = ['(NSString *) str1 = ',' @"A rather short ASCII NSString object is here"', -                    '(NSString *) str0 = ',' @"255"', +                    # '(NSString *) str0 = ',' @"255"',                      '(NSString *) str1 = ',' @"A rather short ASCII NSString object is here"',                      '(NSString *) str2 = ',' @"A rather short UTF8 NSString object is here"',                      '(NSString *) str3 = ',' @"A string made with the at sign is here"', @@ -527,20 +527,20 @@ class ObjCDataFormatterTestCase(TestBase):          # check that the formatters are able to deal safely and correctly          # with ValueObjects that the expression parser returns -        self.expect('expression ((id)@"Hello")', matching=False, -                    substrs = ['Hello']) +        self.expect('expression ((id)@"Hello for long enough to avoid short string types")', matching=False, +                    substrs = ['Hello for long enough to avoid short string types']) -        self.expect('expression -d run -- ((id)@"Hello")', -        substrs = ['Hello']) +        self.expect('expression -d run -- ((id)@"Hello for long enough to avoid short string types")', +        substrs = ['Hello for long enough to avoid short string types'])          self.expect('expr -d run -- label1',              substrs = ['Process Name']) -        self.expect('expr -d run -- @"Hello"', -            substrs = ['Hello']) +        self.expect('expr -d run -- @"Hello for long enough to avoid short string types"', +            substrs = ['Hello for long enough to avoid short string types']) -        self.expect('expr -d run --object-description -- @"Hello"', -            substrs = ['Hello']) +        self.expect('expr -d run --object-description -- @"Hello for long enough to avoid short string types"', +            substrs = ['Hello for long enough to avoid short string types'])          self.expect('expr -d run --object-description -- @"Hello"', matching=False,              substrs = ['@"Hello" Hello'])  | 

