Skip to content

Commit 87f1262

Browse files
authored
[lldb][test] Skip Test*FromStdModule tests on Linux for now (#112530)
This is the alternative to #98701. See for more details: https://reviews.llvm.org/D139361 https://discourse.llvm.org/t/lldb-test-failures-on-linux/80095
1 parent 91b5bef commit 87f1262

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestCase(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIfLinux # https://discourse.llvm.org/t/lldb-test-failures-on-linux/80095
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class TestDbgInfoContentVector(TestBase):
1414
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
1515
@skipIf(macos_version=["<", "14.0"])
1616
@skipIfDarwin # https://github.com/llvm/llvm-project/issues/106475
17+
@skipIfLinux # https://discourse.llvm.org/t/lldb-test-failures-on-linux/80095
1718
def test(self):
1819
self.build()
1920

lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestVectorOfVectors(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIfLinux # https://discourse.llvm.org/t/lldb-test-failures-on-linux/80095
1314
def test(self):
1415
self.build()
1516

0 commit comments

Comments
 (0)