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

On the shell of a few systems, that apparently masks the return code. (Namely - Debian and FreeBSD)
16 lines
338 B
Text
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
|
|
}
|