Skip to content

Commit 0366fae

Browse files
felipepiovezanadrian-prantl
authored andcommitted
[lldb] Skip TestDAP_completions on older versions of libcxx
(cherry picked from commit d6a1501)
1 parent 35b1430 commit 0366fae

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/test/API/tools/lldb-dap/completions/TestDAP_completions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
variable_var1_completion = {"text": "var1", "label": "var1 -- int &"}
3333
variable_var2_completion = {"text": "var2", "label": "var2 -- int &"}
3434

35+
# Older version of libcxx produce slightly different typename strings for
36+
# templates like vector.
37+
@skipIf(compiler="clang", compiler_version=["<", "16.0"])
3538
class TestDAP_completions(lldbdap_testcase.DAPTestCaseBase):
3639
def verify_completions(self, actual_list, expected_list, not_expected_list=[]):
3740
for expected_item in expected_list:

0 commit comments

Comments
 (0)