Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

25 lines
351 B
Plaintext

#
# @TEST-EXEC: zeek -b %INPUT >out
# @TEST-EXEC: btest-diff out
event zeek_init()
{
local a = "foo";
local b = 3;
local c = T;
print cat(a, b, c);
print cat();
print cat("", 3, T);
print cat_sep("|", "<empty>", a, b, c);
print cat_sep("|", "<empty>");
print cat_sep("|", "<empty>", "");
print cat_sep("|", "<empty>", "", b, c);
}