[Lldb-commits] [lldb] r284446 - More testsuite xfail markings cleanup.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 17 18:43:23 PDT 2016


Author: jingham
Date: Mon Oct 17 20:43:22 2016
New Revision: 284446

URL: http://llvm.org/viewvc/llvm-project?rev=284446&view=rev
Log:
More testsuite xfail markings cleanup.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py
    lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py?rev=284446&r1=284445&r2=284446&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py Mon Oct 17 20:43:22 2016
@@ -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()

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py?rev=284446&r1=284445&r2=284446&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py Mon Oct 17 20:43:22 2016
@@ -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."""




More information about the lldb-commits mailing list