diff options
author | Jim Ingham <jingham@apple.com> | 2016-10-18 01:43:22 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-10-18 01:43:22 +0000 |
commit | a7d25264eb62fc4966980029bf04a71aae8951f6 (patch) | |
tree | 5aca8a33bc8ed94e646d56349ede34a7c1159044 /lldb/packages/Python/lldbsuite/test/lang/objc | |
parent | a1ab61cd8bc17645bc085600f4a1d6d0a97e44a9 (diff) | |
download | bcm5719-llvm-a7d25264eb62fc4966980029bf04a71aae8951f6.tar.gz bcm5719-llvm-a7d25264eb62fc4966980029bf04a71aae8951f6.zip |
More testsuite xfail markings cleanup.
llvm-svn: 284446
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/objc')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py | 4 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py | 1 |
2 files changed, 2 insertions, 3 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 e7f7e9b3f3f..2322efe65fb 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py @@ -137,7 +137,7 @@ class FoundationTestCase2(TestBase): self.expect('expression str = (id)[NSString stringWithCString: "new"]') self.runCmd("process continue") - @expectedFailureAll(archs=["i[3-6]86"]) + @expectedFailureAll(archs=["i[3-6]86"], bugnumber="<rdar://problem/28814052>") def test_MyString_dump_with_runtime(self): """Test dump of a known Objective-C object by dereferencing it.""" self.build() @@ -158,7 +158,7 @@ class FoundationTestCase2(TestBase): "\(MyBase\)"]) self.runCmd("process continue") - @expectedFailureAll(archs=["i[3-6]86"]) + @expectedFailureAll(archs=["i[3-6]86"], bugnumber="<rdar://problem/28814052>") def test_runtime_types(self): """Test commands that require runtime types""" self.build() diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py index bf6befb4211..d1d755e289c 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py @@ -24,7 +24,6 @@ class TestObjCSuperMethod(TestBase): self.main_source, '// Set breakpoint here.') @skipUnlessDarwin - @expectedFailureAll(archs=["i[3-6]86"]) @add_test_categories(['pyapi']) def test_with_python_api(self): """Test calling methods on super.""" |