mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
GH-3060: Support negative index lookups for vectors
This commit is contained in:
parent
cdb9c74054
commit
351e68b66a
3 changed files with 15 additions and 1 deletions
|
@ -80,3 +80,5 @@ hole in vector of managed types, 5, [[a=T], [a=T], , , [a=T]]
|
|||
hole in vector of managed types after replacing slice, 3, [[a=T], [a=T], ]
|
||||
left shift (PASS)
|
||||
right shift (PASS)
|
||||
negative index (PASS)
|
||||
negative index (PASS)
|
||||
|
|
|
@ -223,4 +223,10 @@ event zeek_init()
|
|||
local v23 = v6 >> four_ones;
|
||||
test_case( "left shift", all_set(v22 == vector(20, 40, 60, 80)) );
|
||||
test_case( "right shift", all_set(v23 == vector(5, 10, 15, 20)) );
|
||||
|
||||
# negative indices
|
||||
local v24 = vector( 1, 2, 3, 4, 5 );
|
||||
test_case( "negative index", v24[-1] == 5 );
|
||||
test_case( "negative index", v24[-3] == 3 );
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue