Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ def check_local_vars(self, process: lldb.SBProcess, check_expr: bool):
process.selected_thread.selected_frame = f
self.expect_expr("this", result_type="Foo *")

@skipIf(oslist=["linux"], archs=["arm$"])
@skipIf(bugnumber = "rdar://135577167")
@skipIf(oslist=["linux"], archs=["arm"])
@skipIfDarwin
def test_loclist_frame_var(self):
self.build()
self.check_local_vars(self.launch(), check_expr=False)

@skipIf(bugnumber = "rdar://135577167")
@skipIf(dwarf_version=["<", "3"])
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
@skipUnlessDarwin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
class FoundationDisassembleTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True

@skipIf(bugnumber = "rdar://135575668")
@skipIfAsan
@expectedFailureDarwin('rdar://problem/54977700')
def test_foundation_disasm(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from lldbsuite.test.decorators import *


@skipIf(bugnumber = "rdar://136232178")
class TestSwiftBackwardInteropFormatActors(TestBase):

@swiftTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from lldbsuite.test.decorators import *


@skipIf(bugnumber = "rdar://136232178")
class TestSwiftBackwardInteropFormatSwiftStdlibTypes(TestBase):
def setup(self, bkpt_str):
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from lldbsuite.test.decorators import *


@skipIf(bugnumber = "rdar://136232178")
class TestSwiftBackwardInteropFormatSwiftTypesInCxx(TestBase):

def setup(self, bkpt_str):
Expand Down