mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08: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
36 lines
612 B
Text
36 lines
612 B
Text
# Needs perftools support.
|
|
#
|
|
# @TEST-REQUIRES: zeek --help 2>&1 | grep -q mem-leaks
|
|
#
|
|
# @TEST-GROUP: leaks
|
|
#
|
|
# @TEST-EXEC: HEAP_CHECK_DUMP_DIRECTORY=. HEAPCHECK=local btest-bg-run zeek zeek -b -m -r $TRACES/chksums/ip4-udp-good-chksum.pcap %INPUT
|
|
# @TEST-EXEC: btest-bg-wait 60
|
|
|
|
type rec: record {
|
|
a: count;
|
|
b: string;
|
|
c: vector of count;
|
|
};
|
|
|
|
global vec: vector of count = vector(0,0,0);
|
|
|
|
global v: rec = [$a=0, $b="test", $c=vector(1,2,3)];
|
|
|
|
event new_connection(c: connection)
|
|
{
|
|
print vec;
|
|
print v;
|
|
|
|
++vec;
|
|
|
|
print vec;
|
|
|
|
++v$a;
|
|
|
|
print v;
|
|
|
|
++v$c;
|
|
|
|
print v;
|
|
}
|