Rename Zeexygen to Zeekygen

This commit is contained in:
Jon Siwek 2019-05-02 21:39:01 -07:00
parent f2f06d66c0
commit 84ca12fdb4
78 changed files with 444 additions and 440 deletions

View file

@ -11,9 +11,9 @@ unset BRO_DEFAULT_CONNECT_RETRY
dir="$( cd "$( dirname "$0" )" && pwd )"
source_dir="$( cd $dir/../.. && pwd )"
build_dir=$source_dir/build
conf_file=$build_dir/zeexygen-test.conf
conf_file=$build_dir/zeekygen-test.conf
output_dir=$source_dir/doc
zeek_error_file=$build_dir/zeexygen-test-stderr.txt
zeek_error_file=$build_dir/zeekygen-test-stderr.txt
if [ -n "$1" ]; then
output_dir=$1
@ -30,10 +30,10 @@ export BRO_SEED_FILE=$source_dir/testing/btest/random.seed
function run_zeek
{
ZEEK_ALLOW_INIT_ERRORS=1 bro -X $conf_file zeexygen >/dev/null 2>$zeek_error_file
ZEEK_ALLOW_INIT_ERRORS=1 bro -X $conf_file zeekygen >/dev/null 2>$zeek_error_file
if [ $? -ne 0 ]; then
echo "Failed running zeek with zeexygen config file $conf_file"
echo "Failed running zeek with zeekygen config file $conf_file"
echo "See stderr in $zeek_error_file"
exit 1
fi