[Lldb-commits] [lldb] r282774 - This test will not work in i386 mode because we don't create interesting types from the ObjC runtime

Enrico Granata via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 29 14:20:56 PDT 2016


Author: enrico
Date: Thu Sep 29 16:20:56 2016
New Revision: 282774

URL: http://llvm.org/viewvc/llvm-project?rev=282774&view=rev
Log:
This test will not work in i386 mode because we don't create interesting types from the ObjC runtime

"Fixes" rdar://28501616


Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py?rev=282774&r1=282773&r2=282774&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py Thu Sep 29 16:20:56 2016
@@ -25,6 +25,7 @@ class TypeLookupTestCase(TestBase):
         self.line = line_number('main.m', '// break here')
 
     @skipUnlessDarwin
+    @expectedFailureAll(archs=['i386'])
     def test_type_lookup(self):
         """Test type lookup command."""
         self.build()




More information about the lldb-commits mailing list