diff options
author | Enrico Granata <egranata@apple.com> | 2016-09-30 00:40:04 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-09-30 00:40:04 +0000 |
commit | 20f27b99e8c4ccb08c56c1d291db1afe5600ab00 (patch) | |
tree | 164b1f41b94388b00a0526736ad035e00bad9764 /lldb/packages/Python | |
parent | 9091055efa871d15cc53cd8ad91689ea8cb90ddb (diff) | |
download | bcm5719-llvm-20f27b99e8c4ccb08c56c1d291db1afe5600ab00.tar.gz bcm5719-llvm-20f27b99e8c4ccb08c56c1d291db1afe5600ab00.zip |
Do not assume we will be able to discover the return type of this selector call, for that is not true in i386 mode
llvm-svn: 282823
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py index 6d38578dae7..d0a1728b87e 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py @@ -227,7 +227,7 @@ class ObjCDataFormatterTestCase(TestBase): '@"21 items"']) self.expect( - 'expression -d run -- [NSArray new]', + 'expression -d run -- (NSArray*)[NSArray new]', substrs=['@"0 elements"']) def nsdata_data_formatter_commands(self): |