Skip to content

[lldb][swift] Disable tests that use the system dsymutil by accident #2213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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 @@ -27,6 +27,7 @@ def setUp(self):
# Don't run ClangImporter tests if Clangimporter is disabled.
@skipIf(setting=('symbols.use-swift-clangimporter', 'false'))
@skipUnlessDarwin
@skipIf # Makefile uses system dsymutil (which might not work): rdar://72148156
@swiftTest
def test(self):
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class TestSwiftDeploymentTarget(TestBase):

mydir = TestBase.compute_mydir(__file__)

@skipIf # Makefile uses system dsymutil (which might not work): rdar://72148156
@skipIf(bugnumber="rdar://60396797", # should work but crashes.
setting=('symbols.use-swift-clangimporter', 'false'))
@skipUnlessDarwin
Expand All @@ -37,6 +38,7 @@ def test_swift_deployment_target(self):
lldb.SBFileSpec('main.swift'))
self.expect("p f", substrs=['i = 23'])

@skipIf # Makefile uses system dsymutil (which might not work): rdar://72148156
@skipIf(bugnumber="rdar://60396797", # should work but crashes.
setting=('symbols.use-swift-clangimporter', 'false'))
@skipUnlessDarwin
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/lang/swift/missing_sdk/TestMissingSDK.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def setUp(self):
# Call super's setUp().
TestBase.setUp(self)

@skipIf # Makefile uses system dsymutil (which might not work): rdar://72148156
@swiftTest
@skipIf(oslist=['windows'])
@skipIfDarwinEmbedded # swift crash inspecting swift stdlib with little other swift loaded <rdar://problem/55079456>
Expand Down