Skip to content

Commit 96e7933

Browse files
authored
Merge pull request #4201 from apple/🍒/5.7/065e3c9a8e55+de2ddc8f3146
🍒/5.7/065e3c9a8e55+de2ddc8f3146
2 parents cc22f67 + 4ee9113 commit 96e7933

File tree

11 files changed

+15
-0
lines changed

11 files changed

+15
-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/functionalities/launch_stop_at_entry/TestStopAtEntry.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,24 @@ def port_not_available(self):
4040
return None
4141

4242
@skipUnlessDarwin
43+
@skipIfRemote
4344
def test_stop_default_platform_sync(self):
4445
self.do_test_stop_at_entry(True, False)
4546

4647
@skipUnlessDarwin
48+
@skipIfRemote
4749
def test_stop_default_platform_async(self):
4850
self.do_test_stop_at_entry(False, False)
4951

5052
@skipUnlessDarwin
53+
@skipIfRemote
5154
@expectedFailureIfFn(no_debugserver)
5255
@expectedFailureIfFn(port_not_available)
5356
def test_stop_remote_platform_sync(self):
5457
self.do_test_stop_at_entry(True, True)
5558

5659
@skipUnlessDarwin
60+
@skipIfRemote
5761
@expectedFailureIfFn(no_debugserver)
5862
@expectedFailureIfFn(port_not_available)
5963
def test_stop_remote_platform_async(self):

lldb/test/API/functionalities/scripted_process/TestStackCoreScriptedProcess.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def get_module_with_name(self, target, name):
4040

4141
@skipUnlessDarwin
4242
@skipIfOutOfTreeDebugserver
43+
@skipIfRemote
4344
def test_launch_scripted_process_stack_frames(self):
4445
"""Test that we can launch an lldb scripted process from the command
4546
line, check its process ID and read string from memory."""

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()

lldb/test/API/macosx/corefile-exception-reason/TestCorefileExceptionReason.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class TestCorefileExceptionReason(TestBase):
1717
@no_debug_info_test
1818
@skipUnlessDarwin
1919
@skipIf(archs=no_match(['arm64','arm64e']))
20+
@skipIfRemote
2021
def test(self):
2122

2223
corefile = self.getBuildArtifact("process.core")

lldb/test/API/macosx/skinny-corefile/TestSkinnyCorefile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class TestSkinnyCorefile(TestBase):
1919
@skipIfOutOfTreeDebugserver # newer debugserver required for these qMemoryRegionInfo types
2020
@skipIf(debug_info=no_match(["dsym"]), bugnumber="This test is looking explicitly for a dSYM")
2121
@skipUnlessDarwin
22+
@skipIfRemote
2223
def test_lc_note(self):
2324
self.build()
2425
self.aout_exe = self.getBuildArtifact("a.out")

lldb/test/API/macosx/stack-corefile/TestStackCorefile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class TestStackCorefile(TestBase):
1616
@skipIfOutOfTreeDebugserver # newer debugserver required for these qMemoryRegionInfo types
1717
@no_debug_info_test
1818
@skipUnlessDarwin
19+
@skipIfRemote
1920
def test(self):
2021

2122
corefile = self.getBuildArtifact("process.core")

0 commit comments

Comments
 (0)