zeek/testing/btest/bifs/subst_string.zeek
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

13 lines
190 B
Plaintext

#
# @TEST-EXEC: zeek -b %INPUT >out
# @TEST-EXEC: btest-diff out
event zeek_init()
{
local a = "this is another test";
local b = "is";
local c = "at";
print subst_string(a, b, c);
}