Skip to content

Commit d3723be

Browse files
authored
Merge pull request #1707 from JDevlieghere/skip-linux-failures
[lldb] Temporarily skip tests failing on Ubuntu
2 parents 99660a9 + 9aceb72 commit d3723be

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

lldb/test/API/lang/swift/expression/exclusivity_suppression/TestExclusivitySuppression.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class TestExclusivitySuppression(TestBase):
3636
# Test that we can evaluate w.s.i at Breakpoint 1 without triggering
3737
# a failure due to exclusivity
3838
@swiftTest
39+
@skipIfLinux # rdar://problem/67347966
3940
def test_basic_exclusivity_suppression(self):
4041
"""Test that exclusively owned values can still be accessed"""
4142

@@ -56,6 +57,7 @@ def test_basic_exclusivity_suppression(self):
5657
# (5) Evaluating w.s.i again to check that finishing the nested expression
5758
# did not prematurely re-enable exclusivity checks.
5859
@swiftTest
60+
@skipIfLinux # rdar://problem/67347966
5961
def test_exclusivity_suppression_for_concurrent_expressions(self):
6062
"""Test that exclusivity suppression works with concurrent expressions"""
6163
self.build()

lldb/test/API/lang/swift/implementation_only_imports/library_indirect/TestLibraryIndirect.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def launch_info(self):
4141
return info
4242

4343
@swiftTest
44+
@skipIfLinux # rdar://problem/67348151
4445
def test_implementation_only_import_library(self):
4546
"""Test `@_implementationOnly import` behind some indirection in a library used by the main executable
4647
@@ -79,6 +80,7 @@ def cleanup():
7980
self.expect("e container.wrapped.value", substrs=["(SomeLibraryCore.TwoInts)", "(first = 2, second = 3)"])
8081

8182
@swiftTest
83+
@skipIfLinux # rdar://problem/67348151
8284
def test_implementation_only_import_library_no_library_module(self):
8385
"""Test `@_implementationOnly import` behind some indirection in a library used by the main executable, after removing the implementation-only library's swiftmodule
8486

lldb/test/API/lang/swift/implementation_only_imports/main_executable/TestMainExecutable.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def cleanup():
6969
@skipIf(bugnumber="rdar://problem/54322424", # This test is unreliable.
7070
setting=('symbols.use-swift-clangimporter', 'false'))
7171
@swiftTest
72+
@skipIfLinux # rdar://problem/67348391
7273
def test_implementation_only_import_main_executable_no_library_module(self):
7374
"""Test `@_implementationOnly import` in the main executable, after removing the library's swiftmodule
7475

lldb/test/API/lang/swift/po/sys_types/TestSwiftPOSysTypes.py

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

1515
lldbinline.MakeInlineTest(__file__, globals(),
16-
decorators=[swiftTest,skipIf(oslist=['windows'])])
16+
decorators=[swiftTest,skipIf(oslist=['windows', 'linux'])])

0 commit comments

Comments
 (0)