zeek/testing/btest/bifs/decode_base64_errors.zeek
Arne Welzel 4ac65ce8ca btest/decode_base_errors: Avoid binary output in baseline
Zeek prints the input string verbatim to the terminal and that's
upsetting btest just on Alpine.
2023-02-02 18:49:00 +01:00

8 lines
207 B
Text

# @TEST-EXEC: zeek -b %INPUT >out 2>&1
# @TEST-EXEC: TEST_DIFF_CANONIFIER='grep character.*ignored' btest-diff out
event zeek_init()
{
decode_base64("^#@!@##$!===");
decode_base64("\xed\xee\xef===");
}