mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
9 lines
469 B
Text
9 lines
469 B
Text
# Makes sure any given bro script in the scripts/ tree can be loaded in
|
|
# bare mode without error.
|
|
#
|
|
# Commonly, this test may fail if one forgets to @load some base/ scripts
|
|
# when writing a new bro scripts.
|
|
#
|
|
# @TEST-EXEC: test -d $DIST/scripts
|
|
# @TEST-EXEC: for script in `find $DIST/scripts/ -name \*\.zeek`; do bro -b --parse-only $script >>errors 2>&1; done
|
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-sort" btest-diff errors
|