mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
testing/external: Exclude telemetry.log from baselines
The diffs produced by telemetry.log when introducing a weird or removing/adding protocol specific logs is overwhelming and distracting without providing value. Exclude telemetry.log similar to how we already exclude stats.log. Some more targeted telemetry.log tests exists in the normal testing/btest suite and that appears more sensible.
This commit is contained in:
parent
19719b1862
commit
e12e873461
4 changed files with 3 additions and 34 deletions
2
testing/external/scripts/diff-all
vendored
2
testing/external/scripts/diff-all
vendored
|
@ -22,7 +22,7 @@ files_cwd=$(ls $@)
|
|||
files_baseline=$(cd $TEST_BASELINE && ls $@)
|
||||
|
||||
for i in $(echo $files_cwd $files_baseline | sort | uniq); do
|
||||
if [[ "$i" != "loaded_scripts.log" && "$i" != "prof.log" && "$i" != "debug.log" && "$i" != "stats.log" && "$i" != broker_*.log ]]; then
|
||||
if [[ "$i" != "loaded_scripts.log" && "$i" != "prof.log" && "$i" != "debug.log" && "$i" != "stats.log" && "$i" != broker_*.log && "$i" != "telemetry.log" ]]; then
|
||||
|
||||
if [[ "$i" == "reporter.log" ]]; then
|
||||
# Do not diff the reporter.log if it only complains about missing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue