Skip to content

Commit 15ea45f

Browse files
committed
[lldb] Skip unique_ptr import-std-module tests on Linux
This seems to fail on ubuntu 18.04.5 with Clang 9 due to: Error output: error: Couldn't lookup symbols: std::__1::default_delete<int>::operator()(int) const
1 parent 9f6acb1 commit 15ea45f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class TestUniquePtrDbgInfoContent(TestBase):
1313

1414
@add_test_categories(["libc++"])
1515
@skipIf(compiler=no_match("clang"))
16+
@skipIfLinux # s.reset() causes link errors on ubuntu 18.04/Clang 9
1617
def test(self):
1718
self.build()
1819

lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class TestUniquePtr(TestBase):
1313

1414
@add_test_categories(["libc++"])
1515
@skipIf(compiler=no_match("clang"))
16+
@skipIfLinux # s.reset() causes link errors on ubuntu 18.04/Clang 9
1617
def test(self):
1718
self.build()
1819

0 commit comments

Comments
 (0)