Skip to content

Commit e61214c

Browse files
[lldb] Skip tests to unblock rebranch testing
1 parent 3267b11 commit e61214c

File tree

10 files changed

+11
-2
lines changed

10 files changed

+11
-2
lines changed

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

Lines changed: 2 additions & 0 deletions
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.GetSelectedThread().SetSelectedFrame(f.idx)
3838
self.expect_expr("this", result_type="Foo *")
3939

40+
@skipIf(bugnumber = "rdar://135577167")
4041
@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/clangimporter/anonymous-clang-types/TestSwiftAnonymousClangTypes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import lldbsuite.test.lldbutil as lldbutil
55

66

7+
@skipIf(oslist=['linux'])
78
class TestSwiftAnonymousClangTypes(lldbtest.TestBase):
89
@swiftTest
910
def test(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):

lldb/test/API/lang/swift/dwarfimporter/BridgingPCH/TestSwiftDWARFImporterBridgingPCH.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def build(self):
3737

3838
@skipIf(archs=['ppc64le'], bugnumber='SR-10214')
3939
# This test needs a working Remote Mirrors implementation.
40-
@skipIf(oslist=['windows'])
40+
@skipIf(oslist=['windows', 'linux'])
4141
# We delete the pch that would contains the debug info as part of the setup.
4242
#@skipIf(debug_info=no_match(["dsym"]))
4343
@swiftTest

lldb/test/API/lang/swift/expression/simple/TestSwiftSimpleExpressions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222

2323
class TestSwiftSimpleExpressions(TestBase):
24+
@skipIf(bugnumber = "rdar://135575668")
2425
@swiftTest
2526
def test_simple_swift_expressions(self):
2627
"""Tests that we can run simple Swift expressions correctly"""

lldb/test/API/lang/swift/foundation_value_types/notification/TestSwiftFoundationTypeNotification.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import lldbsuite.test.lldbutil as lldbutil
55

66

7+
@skipUnlessDarwin
78
class TestSwiftFoundationTypeNotification(lldbtest.TestBase):
89

910
mydir = lldbtest.TestBase.compute_mydir(__file__)

lldb/test/API/lang/swift/typealias_expression_parser/TestTypealiasExpressionParser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from lldbsuite.test.decorators import *
33

44
# FIXME! The Swift driver insists on passing -experimental-skip-non-inlinable-function-bodies-without-types to -emit-module.
5-
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest,expectedFailureAll(bugnumber="rdar://120928396")])
5+
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest])

0 commit comments

Comments
 (0)