diff --git a/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py b/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py index 3a58296b70cd2..4c83859137563 100644 --- a/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py +++ b/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py @@ -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 diff --git a/lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py b/lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py index d266064075c20..2f91149e2f3d1 100644 --- a/lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py +++ b/lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py @@ -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): diff --git a/lldb/test/API/lang/swift/cxx_interop/backward/format-actors/TestSwiftBackwardInteropFormatActors.py b/lldb/test/API/lang/swift/cxx_interop/backward/format-actors/TestSwiftBackwardInteropFormatActors.py index 29b72b777aced..67864ad0b963e 100644 --- a/lldb/test/API/lang/swift/cxx_interop/backward/format-actors/TestSwiftBackwardInteropFormatActors.py +++ b/lldb/test/API/lang/swift/cxx_interop/backward/format-actors/TestSwiftBackwardInteropFormatActors.py @@ -6,6 +6,7 @@ from lldbsuite.test.decorators import * +@skipIf(bugnumber = "rdar://136232178") class TestSwiftBackwardInteropFormatActors(TestBase): @swiftTest diff --git a/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-stdlib-types/TestSwiftBackwardInteropFormatSwiftStdlibTypes.py b/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-stdlib-types/TestSwiftBackwardInteropFormatSwiftStdlibTypes.py index a5d26f42ae46c..c25a1684d2cda 100644 --- a/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-stdlib-types/TestSwiftBackwardInteropFormatSwiftStdlibTypes.py +++ b/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-stdlib-types/TestSwiftBackwardInteropFormatSwiftStdlibTypes.py @@ -6,6 +6,7 @@ from lldbsuite.test.decorators import * +@skipIf(bugnumber = "rdar://136232178") class TestSwiftBackwardInteropFormatSwiftStdlibTypes(TestBase): def setup(self, bkpt_str): self.build() diff --git a/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-types-in-cxx/TestSwiftBackwardInteropFormatSwiftTypesInCxx.py b/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-types-in-cxx/TestSwiftBackwardInteropFormatSwiftTypesInCxx.py index fe3cc4627c11e..56078d43b08a8 100644 --- a/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-types-in-cxx/TestSwiftBackwardInteropFormatSwiftTypesInCxx.py +++ b/lldb/test/API/lang/swift/cxx_interop/backward/format-swift-types-in-cxx/TestSwiftBackwardInteropFormatSwiftTypesInCxx.py @@ -6,6 +6,7 @@ from lldbsuite.test.decorators import * +@skipIf(bugnumber = "rdar://136232178") class TestSwiftBackwardInteropFormatSwiftTypesInCxx(TestBase): def setup(self, bkpt_str):