Skip to content

Commit 76bd5da

Browse files
committed
[lldb][test] Skip import-std-module tests on Linux for now
Fixes #137046
1 parent 1f7885c commit 76bd5da

File tree

15 files changed

+15
-0
lines changed

15 files changed

+15
-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+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestBasicDeque(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class TestDbgInfoContentDeque(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(compiler="clang", compiler_version=["<", "18.0"])
14+
@skipUnlessDarwin
1415
def test(self):
1516
self.build()
1617

lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestDbgInfoContentForwardList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestBasicForwardList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/iterator/TestIteratorFromStdModule.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+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class TestDbgInfoContentList(TestBase):
1313
@skipIf(compiler=no_match("clang"))
1414
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
1515
@skipIf(macos_version=["<", "14.0"])
16+
@skipUnlessDarwin
1617
def test(self):
1718
self.build()
1819

lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestBasicList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
class TestCase(TestBase):
1212
@add_test_categories(["libc++"])
1313
@skipIf(compiler=no_match("clang"))
14+
@skipUnlessDarwin
1415
def test(self):
1516
"""
1617
This test is creating ValueObjects with both C++ module and debug

lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestSharedPtrDbgInfoContent(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class TestSharedPtr(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(compiler="clang", compiler_version=['<', '17.0'])
14+
@skipUnlessDarwin
1415
def test(self):
1516
self.build()
1617

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
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+
@skipUnlessDarwin
1314
def test(self):
1415
self.build()
1516

lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class TestDbgInfoContentWeakPtr(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(compiler="clang", compiler_version=['<', '17.0'])
14+
@skipUnlessDarwin
1415
def test(self):
1516
self.build()
1617

lldb/test/API/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class TestSharedPtr(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(compiler="clang", compiler_version=['<', '17.0'])
14+
@skipUnlessDarwin
1415
def test(self):
1516
self.build()
1617

0 commit comments

Comments
 (0)