Skip to content

Commit b5d9dd2

Browse files
committed
fixup! fix lldb-dap test
1 parent 51e0997 commit b5d9dd2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,11 @@ def verify_values(self, verify_dict, actual, varref_dict=None, expression=None):
8787
def verify_variables(self, verify_dict, variables, varref_dict=None):
8888
for variable in variables:
8989
name = variable["name"]
90-
self.assertIn(
91-
name, verify_dict, 'variable "%s" in verify dictionary' % (name)
92-
)
93-
self.verify_values(verify_dict[name], variable, varref_dict)
90+
if not name.startswith("std::"):
91+
self.assertIn(
92+
name, verify_dict, 'variable "%s" in verify dictionary' % (name)
93+
)
94+
self.verify_values(verify_dict[name], variable, varref_dict)
9495

9596
def darwin_dwarf_missing_obj(self, initCommands):
9697
self.build(debug_info="dwarf")

0 commit comments

Comments
 (0)