zeek/testing/btest/core/load-pkg.zeek

18 lines
483 B
Text

# Test that package loading works when a package loader script is present.
#
# Test that ".zeek" is loaded
# @TEST-EXEC: zeek -b foo >output
# @TEST-EXEC: btest-diff output
#
# Test that package cannot be loaded when no package loader script exists.
# @TEST-EXEC: rm foo/__load__.zeek
# @TEST-EXEC-FAIL: zeek -b foo
@TEST-START-FILE foo/__load__.zeek
@load ./test
print "__load__.zeek loaded";
@TEST-END-FILE
@TEST-START-FILE foo/test.zeek
print "test.zeek loaded";
@TEST-END-FILE