[Lldb-commits] [lldb] r282823 - Do not assume we will be able to discover the return type of this selector call, for that is not true in i386 mode

Enrico Granata via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 29 17:40:04 PDT 2016


Author: enrico
Date: Thu Sep 29 19:40:04 2016
New Revision: 282823

URL: http://llvm.org/viewvc/llvm-project?rev=282823&view=rev
Log:
Do not assume we will be able to discover the return type of this selector call, for that is not true in i386 mode


Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py?rev=282823&r1=282822&r2=282823&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py Thu Sep 29 19:40:04 2016
@@ -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):




More information about the lldb-commits mailing list