Skip to content

Commit 065e3c9

Browse files
committed
[lldb] Skip more tests that don't make sense to run remotely
Skip another batch of tests that don't really make sense to run remotely.
1 parent 893e1c1 commit 065e3c9

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

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