mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
15 lines
215 B
Text
15 lines
215 B
Text
# @TEST-EXEC: bro -b %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
type test_enum1: enum { ONE };
|
|
|
|
module TEST;
|
|
|
|
type test_enum2: enum { TWO };
|
|
|
|
print ONE;
|
|
print fmt("%s", ONE);
|
|
|
|
|
|
print TWO;
|
|
print fmt("%s", TWO);
|