mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00

This is a workaround for what seems to be a deadlock in gperftools (seen in their 2.0 and 2.1 releases) that happens occasionally.
36 lines
609 B
Text
36 lines
609 B
Text
# Needs perftools support.
|
|
#
|
|
# @TEST-REQUIRES: bro --help 2>&1 | grep -q mem-leaks
|
|
#
|
|
# @TEST-GROUP: leaks
|
|
#
|
|
# @TEST-EXEC: HEAP_CHECK_DUMP_DIRECTORY=. HEAPCHECK=local btest-bg-run bro bro -b -m -r $TRACES/chksums/ip4-udp-good-chksum.pcap %INPUT
|
|
# @TEST-EXEC: btest-bg-wait 15
|
|
|
|
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;
|
|
}
|