mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

Updated README and collected coverage-related tests in a common dir. There are still coverage failures resulting from either the following scripts not being @load'd in the default bro mode: base/frameworks/time-machine/notice.bro base/protocols/http/partial-content.bro base/protocols/rpc/main.bro Or the following result in errors when @load'd: policy/protocols/conn/scan.bro policy/hot.conn.bro If these are all scripts-in-progress, can we move them all to live outside the main scripts/ directory until they're ready?
12 lines
700 B
Text
12 lines
700 B
Text
# Makes sure that all policy/* scripts are loaded in
|
|
# scripts/test-all-policy.bro and that all scripts loaded there actually exist.
|
|
#
|
|
# This test will fail if new bro scripts are added to the scripts/policy/
|
|
# directory. Correcting that just involves updating scripts/test-all-policy.bro
|
|
# to @load the new bro scripts.
|
|
|
|
@TEST-EXEC: test -e $DIST/scripts/test-all-policy.bro
|
|
@TEST-EXEC: test -d $DIST/scripts
|
|
@TEST-EXEC: ( cd $DIST/scripts/policy && find . -name '*.bro' ) | sort >"all scripts found"
|
|
@TEST-EXEC: cat $DIST/scripts/test-all-policy.bro | grep '@load' | sed 'sm^\( *# *\)\{0,\}@load *m./mg' | sort >test-all-policy.bro
|
|
@TEST-EXEC: diff -u "all scripts found" test-all-policy.bro 1>&2
|