mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

- Use `-b` most everywhere, it will save time. - Start some intel tests upon the input file being fully read instead of at an arbitrary time. - Improve termination condition for some sumstats/cluster tests. - Filter uninteresting output from some supervisor tests. - Test for `notice_policy.log` is no longer needed.
19 lines
469 B
Text
19 lines
469 B
Text
#
|
|
# @TEST-EXEC: zeek -b -r ${TRACES}/var-services-std-ports.trace %INPUT
|
|
# @TEST-EXEC: cat conn.log | zeek-cut service > service.out
|
|
# @TEST-EXEC-FAIL: grep -q ssh service.out
|
|
# @TEST-EXEC-FAIL: grep -q dns service.out
|
|
|
|
@load base/protocols/conn
|
|
@load base/protocols/dns
|
|
@load base/protocols/ssh
|
|
@load base/frameworks/dpd
|
|
|
|
redef Analyzer::disabled_analyzers += { Analyzer::ANALYZER_SSH };
|
|
|
|
event zeek_init()
|
|
{
|
|
Analyzer::disable_analyzer(Analyzer::ANALYZER_DNS);
|
|
}
|
|
|
|
|