File tree 1 file changed +4
-3
lines changed
lldb/test/API/tools/lldb-vscode/variables 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -507,12 +507,13 @@ def test_indexedVariables(self):
507
507
508
508
# Verify locals
509
509
locals = self .vscode .get_local_variables ()
510
- buffer_children = make_buffer_verify_dict (0 , 32 )
510
+ # The vector variables will have one additional entry from the fake
511
+ # "[raw]" child.
511
512
verify_locals = {
512
513
"small_array" : {"equals" : {"indexedVariables" : 5 }},
513
514
"large_array" : {"equals" : {"indexedVariables" : 200 }},
514
- "small_vector" : {"equals" : {"indexedVariables" : 5 }},
515
- "large_vector" : {"equals" : {"indexedVariables" : 200 }},
515
+ "small_vector" : {"equals" : {"indexedVariables" : 6 }},
516
+ "large_vector" : {"equals" : {"indexedVariables" : 201 }},
516
517
"pt" : {"missing" : ["indexedVariables" ]},
517
518
}
518
519
self .verify_variables (verify_locals , locals )
You can’t perform that action at this time.
0 commit comments