Skip to content

🍒/5.7/065e3c9a8e55+de2ddc8f3146 #4201

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lldb/test/API/assert_messages_test/TestAssertMessages.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import lldb
import lldbsuite.test.lldbutil as lldbutil
from lldbsuite.test.lldbtest import *
from lldbsuite.test.decorators import *
from textwrap import dedent


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

@expectedFailureAll(remote=True)
def test_createTestTarget(self):
try:
self.createTestTarget("doesnt_exist")
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/functionalities/archives/TestBSDArchives.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def setUp(self):
@expectedFailureAll(
oslist=["windows"],
bugnumber="llvm.org/pr24527. Makefile.rules doesn't know how to build static libs on Windows")
@expectedFailureAll(remote=True)
def test(self):
"""Break inside a() and b() defined within libfoo.a."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

class ObjCDataFormatterKVO(ObjCDataFormatterTestCase):

@expectedFailureAll(remote=True)
def test_kvo_with_run_command(self):
"""Test the behavior of formatters when KVO is in use."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,24 @@ def port_not_available(self):
return None

@skipUnlessDarwin
@skipIfRemote
def test_stop_default_platform_sync(self):
self.do_test_stop_at_entry(True, False)

@skipUnlessDarwin
@skipIfRemote
def test_stop_default_platform_async(self):
self.do_test_stop_at_entry(False, False)

@skipUnlessDarwin
@skipIfRemote
@expectedFailureIfFn(no_debugserver)
@expectedFailureIfFn(port_not_available)
def test_stop_remote_platform_sync(self):
self.do_test_stop_at_entry(True, True)

@skipUnlessDarwin
@skipIfRemote
@expectedFailureIfFn(no_debugserver)
@expectedFailureIfFn(port_not_available)
def test_stop_remote_platform_async(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def get_module_with_name(self, target, name):

@skipUnlessDarwin
@skipIfOutOfTreeDebugserver
@skipIfRemote
def test_launch_scripted_process_stack_frames(self):
"""Test that we can launch an lldb scripted process from the command
line, check its process ID and read string from memory."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def setUp(self):
self.main_source = lldb.SBFileSpec("stepping-tests.m")

@add_test_categories(['pyapi', 'basic_process'])
@expectedFailureAll(remote=True)
def test_with_python_api(self):
"""Test stepping through the 'direct dispatch' optimized method calls."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class ObjcOptimizedTestCase(TestBase):
mymethod = "description"
method_spec = "-[%s %s]" % (myclass, mymethod)

@expectedFailureAll(remote=True)
def test_break(self):
"""Test 'expr member' continues to work for optimized build."""
self.build()
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/lang/objc/objc-stepping/TestObjCStepping.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def setUp(self):
self.main_source, '// Step over nil should stop here.')

@add_test_categories(['pyapi', 'basic_process'])
@expectedFailureAll(remote=True)
def test_with_python_api(self):
"""Test stepping through ObjC method dispatch in various forms."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class TestCorefileExceptionReason(TestBase):
@no_debug_info_test
@skipUnlessDarwin
@skipIf(archs=no_match(['arm64','arm64e']))
@skipIfRemote
def test(self):

corefile = self.getBuildArtifact("process.core")
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/macosx/skinny-corefile/TestSkinnyCorefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class TestSkinnyCorefile(TestBase):
@skipIfOutOfTreeDebugserver # newer debugserver required for these qMemoryRegionInfo types
@skipIf(debug_info=no_match(["dsym"]), bugnumber="This test is looking explicitly for a dSYM")
@skipUnlessDarwin
@skipIfRemote
def test_lc_note(self):
self.build()
self.aout_exe = self.getBuildArtifact("a.out")
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/macosx/stack-corefile/TestStackCorefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class TestStackCorefile(TestBase):
@skipIfOutOfTreeDebugserver # newer debugserver required for these qMemoryRegionInfo types
@no_debug_info_test
@skipUnlessDarwin
@skipIfRemote
def test(self):

corefile = self.getBuildArtifact("process.core")
Expand Down