mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
25 lines
572 B
Text
25 lines
572 B
Text
# A test of prefix-based @load'ing
|
|
|
|
# @TEST-EXEC: bro addprefixes utils/site protocols/http >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
@TEST-START-FILE addprefixes.bro
|
|
@prefixes += lcl
|
|
@prefixes += lcl2
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE lcl.utils.site.bro
|
|
print "loaded lcl.site.bro";
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE lcl2.utils.site.bro
|
|
print "loaded lcl2.site.bro";
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE lcl.protocols.http.bro
|
|
print "loaded lcl.protocols.http.bro";
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE lcl2.protocols.http.bro
|
|
print "loaded lcl2.protocols.http.bro";
|
|
@TEST-END-FILE
|