mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

Redirecting both to the same file can show platform-specific differences (e.g. Alpine), likely due to different buffering defaults.
10 lines
205 B
Text
10 lines
205 B
Text
#
|
|
# @TEST-EXEC: zeek -b %INPUT >out 2>err
|
|
# @TEST-EXEC: btest-diff out
|
|
# @TEST-EXEC: btest-diff err
|
|
|
|
event zeek_init()
|
|
{
|
|
print strptime("%Y-%m-%d", "2012-10-19");
|
|
print strptime("%m", "1980-10-24");
|
|
}
|