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

This converts Johanna's TEST_DIFF_CANONIFIER removals via "env -u" to using the new "btest-diff --binary", and updates the affected baselines.
11 lines
300 B
Text
11 lines
300 B
Text
# @TEST-EXEC: zeek -b -r $TRACES/http/content-range-gap.trace %INPUT
|
|
# @TEST-EXEC: btest-diff --binary extract_files/thefile
|
|
|
|
@load base/protocols/http
|
|
@load base/files/extract
|
|
|
|
event file_new(f: fa_file)
|
|
{
|
|
Files::add_analyzer(f, Files::ANALYZER_EXTRACT,
|
|
[$extract_filename="thefile"]);
|
|
}
|