mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38: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.
27 lines
553 B
Text
27 lines
553 B
Text
#
|
|
# @TEST-EXEC: zeek -b order_rand | sort >out.1
|
|
# @TEST-EXEC: zeek -b order_base | sort >out.2
|
|
# @TEST-EXEC: cmp out.1 out.2
|
|
|
|
@TEST-START-FILE order_rand.zeek
|
|
|
|
print unique_id("A-");
|
|
print unique_id_from(5, "E-");
|
|
print unique_id("B-");
|
|
print unique_id_from(4, "D-");
|
|
print unique_id("C-");
|
|
print unique_id_from(5, "F-");
|
|
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE order_base.zeek
|
|
|
|
print unique_id("A-");
|
|
print unique_id("B-");
|
|
print unique_id("C-");
|
|
print unique_id_from(4, "D-");
|
|
print unique_id_from(5, "E-");
|
|
print unique_id_from(5, "F-");
|
|
|
|
@TEST-END-FILE
|
|
|