Skip to content

[lldb][test] XPASS/XFAIL tests for linux when using redecl-completion #8861

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 1 commit into from
Jun 6, 2024
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 @@ -14,6 +14,8 @@ class ExprCommandCallFunctionTestCase(TestBase):
)
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr21765")
@skipIf(compiler="clang", compiler_version=["<", "9.0"])
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'),
oslist=["linux"])
def test_with(self):
"""Test calling std::String member function."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def setUp(self):
self.main_source = "main.cpp"
self.main_source_spec = lldb.SBFileSpec(self.main_source)

@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
def test_issue35310(self):
"""Test invoking functions with non-standard linkage names.

Expand Down