Skip to content

[lldb][test] XFAIL/skip more tests when plugin.typesystem.clang.experimental-redecl-completion is enabled #8275

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
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 @@ -224,6 +224,7 @@ def test_addr_of_struct(self):
self.assert_decl_not_completed(self.other_struct_decl)
self.assert_decl_not_completed(self.class_in_namespace_decl)

@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
@add_test_categories(["dwarf"])
def test_class_function_access_member(self):
self.clean_setup(location="class function")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class TestSwiftWerror(TestBase):
NO_DEBUG_INFO_TESTCASE = True

# Don't run ClangImporter tests if Clangimporter is disabled.
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
@skipIf(setting=('symbols.use-swift-clangimporter', 'false'))
@skipIf(setting=('symbols.swift-precise-compiler-invocation', 'true'))
@skipUnlessDarwin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class TestSwiftRewriteClangPaths(TestBase):
@skipUnlessDarwin
@swiftTest
@skipIf(debug_info=no_match(["dsym"]))
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
def testWithRemap(self):
self.dotest(True)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class TestSwiftLateDylib(TestBase):
@swiftTest
@skipIfDarwinEmbedded
@skipIf(setting=('symbols.swift-precise-compiler-invocation', 'true'))
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
def test(self):
"""Test that a late loaded Swift dylib is debuggable"""
arch = self.getArchitecture()
Expand Down