mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
26 lines
No EOL
554 B
Text
26 lines
No EOL
554 B
Text
#
|
|
# @TEST-EXEC: zeek -b %INPUT
|
|
# @TEST-EXEC: btest-diff test.log
|
|
|
|
@load tuning/enable-utf-8-logs
|
|
|
|
module Test;
|
|
export {
|
|
redef enum Log::ID += { LOG };
|
|
|
|
type Log: record {
|
|
s: string;
|
|
} &log;
|
|
}
|
|
|
|
event zeek_init()
|
|
{
|
|
local a = "foo \xc2\xae bar"; # 2 bytes
|
|
local b = "दुनिया को नमस्ते"; # Hindi characters are 3 byte utf-8
|
|
local c = "hello 𠜎"; # A 4 byte Chinese character
|
|
|
|
Log::create_stream(Test::LOG, [$columns=Log]);
|
|
Log::write(Test::LOG, [$s=a]);
|
|
Log::write(Test::LOG, [$s=b]);
|
|
Log::write(Test::LOG, [$s=c]);
|
|
} |