Skip to content

Commit de2ddc8

Browse files
committed
[lldb] XFAIL tests that aren't passing remotely
XFAIL a series of tests that are failing remotely.
1 parent 065e3c9 commit de2ddc8

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

lldb/test/API/assert_messages_test/TestAssertMessages.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import lldb
77
import lldbsuite.test.lldbutil as lldbutil
88
from lldbsuite.test.lldbtest import *
9+
from lldbsuite.test.decorators import *
910
from textwrap import dedent
1011

1112

@@ -24,6 +25,7 @@ def assert_expect_fails_with(self, cmd, expect_args, expected_msg):
2425
else:
2526
self.fail("Initial expect should have raised AssertionError!")
2627

28+
@expectedFailureAll(remote=True)
2729
def test_createTestTarget(self):
2830
try:
2931
self.createTestTarget("doesnt_exist")

lldb/test/API/functionalities/archives/TestBSDArchives.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def setUp(self):
2424
@expectedFailureAll(
2525
oslist=["windows"],
2626
bugnumber="llvm.org/pr24527. Makefile.rules doesn't know how to build static libs on Windows")
27+
@expectedFailureAll(remote=True)
2728
def test(self):
2829
"""Break inside a() and b() defined within libfoo.a."""
2930
self.build()

lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
class ObjCDataFormatterKVO(ObjCDataFormatterTestCase):
1616

17+
@expectedFailureAll(remote=True)
1718
def test_kvo_with_run_command(self):
1819
"""Test the behavior of formatters when KVO is in use."""
1920
self.build()

lldb/test/API/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def setUp(self):
2121
self.main_source = lldb.SBFileSpec("stepping-tests.m")
2222

2323
@add_test_categories(['pyapi', 'basic_process'])
24+
@expectedFailureAll(remote=True)
2425
def test_with_python_api(self):
2526
"""Test stepping through the 'direct dispatch' optimized method calls."""
2627
self.build()

lldb/test/API/lang/objc/objc-optimized/TestObjcOptimized.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class ObjcOptimizedTestCase(TestBase):
2626
mymethod = "description"
2727
method_spec = "-[%s %s]" % (myclass, mymethod)
2828

29+
@expectedFailureAll(remote=True)
2930
def test_break(self):
3031
"""Test 'expr member' continues to work for optimized build."""
3132
self.build()

lldb/test/API/lang/objc/objc-stepping/TestObjCStepping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def setUp(self):
3030
self.main_source, '// Step over nil should stop here.')
3131

3232
@add_test_categories(['pyapi', 'basic_process'])
33+
@expectedFailureAll(remote=True)
3334
def test_with_python_api(self):
3435
"""Test stepping through ObjC method dispatch in various forms."""
3536
self.build()

0 commit comments

Comments
 (0)