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

This also installs symlinks from "zeek" and "bro-config" to a wrapper script that prints a deprecation warning. The btests pass, but this is still WIP. broctl renaming is still missing. #239
20 lines
304 B
Text
20 lines
304 B
Text
# @TEST-EXEC: zeek -b %INPUT >output 2>&1
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
type X: record {
|
|
a: vector of bool &default=vector(T, F, T);
|
|
b: vector of bool &default=vector();
|
|
};
|
|
|
|
global x: X;
|
|
|
|
global a: vector of count;
|
|
|
|
a = vector();
|
|
print a;
|
|
|
|
a = vector(1,2,3);
|
|
print a;
|
|
|
|
print x$a;
|
|
print x$b;
|