mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 00:58:19 +00:00

Now that Zeek no longer silently accepts -B when not compiled in debug mode, these tests were failing.
15 lines
462 B
Text
15 lines
462 B
Text
# @TEST-EXEC-FAIL: zeek -b %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 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;
|