Skip to content

Commit 7e23613

Browse files
committed
[lldb] Skip libcxx tests with older versions of clang
1 parent b4c4c79 commit 7e23613

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

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
@@ -10,6 +10,7 @@
1010
class TestSharedPtr(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(compiler="clang", compiler_version=['<', '17.0'])
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
@@ -10,6 +10,7 @@
1010
class TestDbgInfoContentWeakPtr(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(compiler="clang", compiler_version=['<', '17.0'])
1314
def test(self):
1415
self.build()
1516

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
@@ -10,6 +10,7 @@
1010
class TestSharedPtr(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(compiler="clang", compiler_version=['<', '17.0'])
1314
def test(self):
1415
self.build()
1516

0 commit comments

Comments
 (0)