mirror of
https://github.com/zeek/zeek.git
synced 2025-10-01 22:28:20 +00:00
24 lines
288 B
Text
24 lines
288 B
Text
# @TEST-EXEC: zeek -b %INPUT >out 2>&1
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
function always()
|
|
{
|
|
print "always";
|
|
}
|
|
|
|
function no_ZAM() &no_ZAM_opt
|
|
{
|
|
print "no ZAM";
|
|
}
|
|
|
|
function no_CPP() &no_CPP_opt
|
|
{
|
|
print "no CPP";
|
|
}
|
|
|
|
event zeek_init()
|
|
{
|
|
print always;
|
|
print no_ZAM;
|
|
print no_CPP;
|
|
}
|