diff options
author | Greg Clayton <gclayton@apple.com> | 2016-12-09 17:54:59 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2016-12-09 17:54:59 +0000 |
commit | 8f618117897e0718aa7950c2e892aa6fdc502ebc (patch) | |
tree | d16a962ffbefe75ce9a60238dd34e680d7678a00 /lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py | |
parent | 017b7a71d82b5c154055ac6aa7997db5d2bf38ba (diff) | |
download | bcm5719-llvm-8f618117897e0718aa7950c2e892aa6fdc502ebc.tar.gz bcm5719-llvm-8f618117897e0718aa7950c2e892aa6fdc502ebc.zip |
Fix i386 being able to show member variables correctly by not returning empty objective C types from the runtime.
We don't parse ObjC v1 types from the runtime metadata like we do for ObjC v2, but doing so by creating empty types was ruining the i386 v1 debugging experience.
<rdar://problem/24093343>
llvm-svn: 289233
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py b/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py index 2322efe65fb..ce7e7742bfe 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py @@ -186,6 +186,7 @@ class FoundationTestCase2(TestBase): "be completed."]) self.runCmd("process continue") + @expectedFailureAll(archs=["i[3-6]86"], bugnumber="<rdar://problem/28814052>") def test_NSError_p(self): """Test that p of the result of an unknown method does require a cast.""" self.build() |