Skip to content
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 @@ -2,5 +2,5 @@
from lldbsuite.test.decorators import *

lldbinline.MakeInlineTest(__file__, globals(), decorators=[skipEmbeddedSwift,
swiftTest, skipUnlessDarwin,
swiftTest, skipIfLinux,
expectedFailureAll(archs=['arm64_32'], bugnumber="<rdar://problem/58065423>")])
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ def setUp(self):
@skipEmbeddedSwift
# Don't run ClangImporter tests if Clangimporter is disabled.
@skipIf(setting=("symbols.use-swift-clangimporter", "false"))
@skipUnlessDarwin
@swiftTest
def test(self):
"""This used to be a test for a diagnostic, however,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class TestSwiftExplicitModules(lldbtest.TestBase):

@skipEmbeddedSwift
@swiftTest
@skipUnlessDarwin
@skipIfLinux
def test_import(self):
"""Test an implicit import inside an explicit build"""
mod_cache = self.getBuildArtifact("my-clang-modules-cache")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
from lldbsuite.test.decorators import *

lldbinline.MakeInlineTest(__file__, globals(), decorators=[skipEmbeddedSwift,
swiftTest,
skipUnlessDarwin])
swiftTest, skipIfLinux])
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class TestSwiftResilienceSuperclass(TestBase):
@skipEmbeddedSwift
@skipUnlessDarwin
@skipIfLinux
@swiftTest
def test(self):
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class TestSwiftResilienceSuperclassMod(TestBase):
@skipEmbeddedSwift
@skipUnlessDarwin
@skipIfLinux
@swiftTest
def test(self):
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class TestSwiftResilienceSuperclassOtherMod(TestBase):
@skipEmbeddedSwift
@skipUnlessDarwin
@skipIfLinux
@swiftTest
def test(self):
self.build()
Expand Down