zeek/testing/btest/language/event-local-var.bro
Johanna Amann 8f6cdbb489 Fix test failing when we use &> instead of 2>
On the shell of a few systems, that apparently masks the return code.

(Namely - Debian and FreeBSD)
2016-05-13 07:44:30 -07:00

16 lines
338 B
Text

# @TEST-EXEC-FAIL: bro -b %INPUT 2> out
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
event e1(num: count)
{
print fmt("event 1: %s", num);
}
event bro_init()
{
# Test assigning a local event variable to an event
local v: event(num: count);
v = e1;
schedule 1sec { v(6) }; # This should fail
}