mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
13 lines
203 B
Text
13 lines
203 B
Text
#
|
|
# @TEST-EXEC: bro %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
event bro_init()
|
|
{
|
|
local a = "this";
|
|
local b = "testing";
|
|
|
|
print strcmp(a, b) > 0;
|
|
print strcmp(b, a) < 0;
|
|
print strcmp(a, a) == 0;
|
|
}
|