zeek/testing/btest/language/enum-desc.zeek
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

16 lines
216 B
Plaintext

# @TEST-EXEC: zeek -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);