mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00

- Use `-b` most everywhere, it will save time. - Start some intel tests upon the input file being fully read instead of at an arbitrary time. - Improve termination condition for some sumstats/cluster tests. - Filter uninteresting output from some supervisor tests. - Test for `notice_policy.log` is no longer needed.
16 lines
537 B
Text
16 lines
537 B
Text
# @TEST-EXEC-FAIL: zeek -b -B broker %INPUT
|
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
|
|
|
module TestModule;
|
|
|
|
type testrec: record {
|
|
a: count;
|
|
b: string;
|
|
c: set[string];
|
|
};
|
|
|
|
global a: table[string, count] of count &backend=Broker::MEMORY;
|
|
global b: table[string] of testrec &backend=Broker::MEMORY;
|
|
global c: table[string] of count &read_expire=5sec &backend=Broker::MEMORY;
|
|
global d: table[string] of count &broker_store="store" &backend=Broker::MEMORY;
|
|
global f: count &backend=Broker::MEMORY;
|