Skip to content
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

[lldb][CI] Disable failing tests on linux #10043

Open
wants to merge 1 commit into
base: swift/release/6.0
Choose a base branch
from
Open
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 @@ -11,6 +11,7 @@ class TestDbgInfoContentDeque(TestBase):
@add_test_categories(["libc++"])
@skipIf(compiler=no_match("clang"))
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
@skipIf(oslist=["linux"])
@skipIf(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
def test(self):
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class TestDbgInfoContentList(TestBase):
@add_test_categories(["libc++"])
@skipIf(compiler=no_match("clang"))
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
@skipIf(compiler="clang", compiler_version=["<", "12.0"], oslist=["linux"])

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is still not what you intend.

@skipIf(macos_version=["<", "14.0"])
@skipIf(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
def test(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class TestDbgInfoContentVector(TestBase):
@add_test_categories(["libc++"])
@skipIf(compiler=no_match("clang"))
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
@skipIf(oslist=["linux"])
@skipIf(macos_version=["<", "14.0"])
@skipIf(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
def test(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

class LibcxxChronoDataFormatterTestCase(TestBase):
@add_test_categories(["libc++"])
@skipIf(oslist=["linux"])
def test_with_run_command(self):
"""Test that that file and class static variables display correctly."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def check_foo(self):
@add_test_categories(["libc++"])
@skipIf(compiler=no_match("clang"))
@skipIf(compiler="clang", compiler_version=["<", "16.0"])
@skipIf(oslist=["linux"])
def test_with_run_command(self):
"""Test that std::ranges::ref_view is formatted correctly when printed."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,21 @@ def build_and_run(self, test_file):
return True

@skipIf(compiler="clang", compiler_version=["<", "9.0"])
@skipIf(oslist=["linux"])
def test_regcall(self):
if not self.build_and_run("regcall.c"):
return
self.expect_expr("func(1, 2, 3, 4)", result_type="int", result_value="10")

@skipIf(compiler="clang", compiler_version=["<", "9.0"])
@skipIf(oslist=["linux"])
def test_ms_abi(self):
if not self.build_and_run("ms_abi.c"):
return
self.expect_expr("func(1, 2, 3, 4)", result_type="int", result_value="10")

@skipIf(compiler="clang", compiler_version=["<", "9.0"])
@skipIf(oslist=["linux"])
def test_stdcall(self):
if not self.build_and_run("stdcall.c"):
return
Expand All @@ -71,17 +74,20 @@ def test_vectorcall(self):
self.expect_expr("func(1.0)", result_type="int", result_value="1")

@skipIf(compiler="clang", compiler_version=["<", "9.0"])
@skipIf(oslist=["linux"])
def test_fastcall(self):
if not self.build_and_run("fastcall.c"):
return
self.expect_expr("func(1, 2, 3, 4)", result_type="int", result_value="10")

@skipIf(compiler="clang", compiler_version=["<", "9.0"])
@skipIf(oslist=["linux"])
def test_pascal(self):
if not self.build_and_run("pascal.c"):
return
self.expect_expr("func(1, 2, 3, 4)", result_type="int", result_value="10")

@skipIf(oslist=["linux"])
def test_sysv_abi(self):
if not self.build_and_run("sysv_abi.c"):
return
Expand Down