Skip to content

Commit 09bef0c

Browse files
authored
Merge pull request swiftlang#11185 from augusto2112/dis-test-21.x
[lldb] Keep skipped tests skipped in stable/21.x
2 parents d6afd90 + 8bbd4ab commit 09bef0c

File tree

5 files changed

+7
-1
lines changed

5 files changed

+7
-1
lines changed

lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,14 @@ def check_local_vars(self, process: lldb.SBProcess, check_expr: bool):
3737
process.selected_thread.selected_frame = f
3838
self.expect_expr("this", result_type="Foo *")
3939

40-
@skipIf(oslist=["linux"], archs=["arm$"])
40+
@skipIf(bugnumber = "rdar://135577167")
41+
@skipIf(oslist=["linux"], archs=["arm"])
4142
@skipIfDarwin
4243
def test_loclist_frame_var(self):
4344
self.build()
4445
self.check_local_vars(self.launch(), check_expr=False)
4546

47+
@skipIf(bugnumber = "rdar://135577167")
4648
@skipIf(dwarf_version=["<", "3"])
4749
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
4850
@skipUnlessDarwin

lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
class FoundationDisassembleTestCase(TestBase):
1313
NO_DEBUG_INFO_TESTCASE = True
1414

15+
@skipIf(bugnumber = "rdar://135575668")
1516
@skipIfAsan
1617
@expectedFailureDarwin('rdar://problem/54977700')
1718
def test_foundation_disasm(self):

lldb/test/API/lang/swift/cxx_interop/backward/format-actors/TestSwiftBackwardInteropFormatActors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from lldbsuite.test.decorators import *
77

88

9+
@skipIf(bugnumber = "rdar://136232178")
910
class TestSwiftBackwardInteropFormatActors(TestBase):
1011

1112
@swiftTest

lldb/test/API/lang/swift/cxx_interop/backward/format-swift-stdlib-types/TestSwiftBackwardInteropFormatSwiftStdlibTypes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from lldbsuite.test.decorators import *
77

88

9+
@skipIf(bugnumber = "rdar://136232178")
910
class TestSwiftBackwardInteropFormatSwiftStdlibTypes(TestBase):
1011
def setup(self, bkpt_str):
1112
self.build()

lldb/test/API/lang/swift/cxx_interop/backward/format-swift-types-in-cxx/TestSwiftBackwardInteropFormatSwiftTypesInCxx.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from lldbsuite.test.decorators import *
77

88

9+
@skipIf(bugnumber = "rdar://136232178")
910
class TestSwiftBackwardInteropFormatSwiftTypesInCxx(TestBase):
1011

1112
def setup(self, bkpt_str):

0 commit comments

Comments
 (0)