mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
15 lines
265 B
Text
15 lines
265 B
Text
# @TEST-EXEC: zeek -b -O ZAM --optimize-files='opt-files' %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
# Tests that we can selectively pick this file.
|
|
|
|
function my_test()
|
|
{
|
|
print "I should be ZAM code!";
|
|
}
|
|
|
|
event zeek_init()
|
|
{
|
|
my_test();
|
|
print my_test;
|
|
}
|