mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
21 lines
333 B
Text
21 lines
333 B
Text
# @TEST-EXEC-FAIL: bro -b a.bro >output1 2>&1
|
|
# @TEST-EXEC-FAIL: bro -b a.bro b.bro >output2 2>&1
|
|
# @TEST-EXEC: btest-diff output1
|
|
# @TEST-EXEC: btest-diff output2
|
|
|
|
@TEST-START-FILE a.bro
|
|
module A;
|
|
|
|
event zeek_init()
|
|
{
|
|
print "a";
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE b.bro
|
|
module B;
|
|
|
|
event zeek_init()
|
|
{
|
|
print "b";
|
|
}
|
|
@TEST-END-FILE
|