summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py
diff options
context:
space:
mode:
authorVladislav Dzhidzhoev <vdzhidzhoev@accesssoftek.com>2025-01-13 23:04:53 +0100
committerGitHub <noreply@github.com>2025-01-13 23:04:53 +0100
commit61e2841d8b83319e90cd44cf77770d2e41080cc2 (patch)
treeb6118e9b6be5556d561c8eda3bcea79885be2f2b /lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py
parent19032bfe87fa0f4a3a7b3e68daafc93331b71e0d (diff)
[lldb][test] Fix some 'import-std-module' tests (#122358)
Some tests from 'import-std-module' used to fail on the builder https://lab.llvm.org/staging/#/builders/195/builds/4470, since libcxx is set up to be linked statically with test binaries on it. Thus, they were temporarily disabled in #112530. Here, this commit is reverted. Jitted expressions from the tests try to call __libcpp_verbose_abort function that is not present in the process image, which causes the failure. Here, this symbol is explicitly referenced from the test source files.
Diffstat (limited to 'lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py')
-rw-r--r--lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py
index bafc76282962..13ab6b0c9ac1 100644
--- a/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py
+++ b/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py
@@ -10,7 +10,6 @@ from lldbsuite.test import lldbutil
class TestCase(TestBase):
@add_test_categories(["libc++"])
@skipIf(compiler=no_match("clang"))
- @skipIfLinux # https://discourse.llvm.org/t/lldb-test-failures-on-linux/80095
def test(self):
self.build()