Skip to content

Commit 732f2cf

Browse files
Michael137github-actions[bot]
authored andcommitted
Automerge: [lldb][test] Re-enable import-std-module tests on Linux (#157649)
This reverts commit 76bd5da. These were originally skipped for llvm/llvm-project#137046 because they were failing on Fuchsia buildbots. I couldn't locally reproduce the Linux failures from back then (and maybe they have been fixed by something else since then). We want to re-enable these tests because they are one of the few API tests in the `libcxx` category that we skip on Linux. So the libc++ pre-merge CI doesn't catch these test failures. To avoid churn caused by this missing coverage, it would be great if we ran these on Linux again.
2 parents 3b4f56b + ebd6841 commit 732f2cf

File tree

15 files changed

+1
-16
lines changed

15 files changed

+1
-16
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class TestCase(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(macos_version=["<", "15.0"])
14-
@skipUnlessDarwin
1514
def test(self):
1615
self.build()
1716

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class TestBasicDeque(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(macos_version=["<", "15.0"])
14-
@skipUnlessDarwin
1514
def test(self):
1615
self.build()
1716

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ class TestDbgInfoContentDeque(TestBase):
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(compiler="clang", compiler_version=["<", "18.0"])
1414
@skipIf(macos_version=["<", "15.0"])
15-
@skipUnlessDarwin
1615
def test(self):
1716
self.build()
1817

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class TestDbgInfoContentForwardList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(macos_version=["<", "15.0"])
14-
@skipUnlessDarwin
1514
def test(self):
1615
self.build()
1716

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class TestBasicForwardList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(macos_version=["<", "15.0"])
14-
@skipUnlessDarwin
1514
def test(self):
1615
self.build()
1716

lldb/test/API/commands/expression/import-std-module/iterator/TestIteratorFromStdModule.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class TestCase(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(macos_version=["<", "15.0"])
14-
@skipUnlessDarwin
1514
def test(self):
1615
self.build()
1716

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class TestDbgInfoContentList(TestBase):
1313
@skipIf(compiler=no_match("clang"))
1414
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
1515
@skipIf(macos_version=["<", "15.0"])
16-
@skipUnlessDarwin
1716
def test(self):
1817
self.build()
1918

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class TestBasicList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(macos_version=["<", "15.0"])
14-
@skipUnlessDarwin
1514
def test(self):
1615
self.build()
1716

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ class TestCase(TestBase):
1212
@add_test_categories(["libc++"])
1313
@skipIf(compiler=no_match("clang"))
1414
@skipIf(macos_version=["<", "15.0"])
15-
@skipUnlessDarwin
1615
def test(self):
1716
"""
1817
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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class TestSharedPtrDbgInfoContent(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(macos_version=["<", "15.0"])
14-
@skipUnlessDarwin
1514
def test(self):
1615
self.build()
1716

0 commit comments

Comments
 (0)