zeek/testing/btest/language/table-init.zeek
Jon Siwek a994be9eeb Merge remote-tracking branch 'origin/topic/seth/zeek_init'
* origin/topic/seth/zeek_init:
  Some more testing fixes.
  Update docs and tests for bro_(init|done) -> zeek_(init|done)
  Implement the zeek_init handler.
2019-04-19 11:24:29 -07:00

20 lines
446 B
Text

# @TEST-EXEC: bro -b %INPUT >output
# @TEST-EXEC: btest-diff output
global global_table: table[count] of string = {
[1] = "one",
[2] = "two"
} &default = "global table default";
event zeek_init()
{
local local_table: table[count] of string = {
[3] = "three",
[4] = "four"
} &default = "local table default";
print global_table;
print global_table[0];
print local_table;
print local_table[0];
}