mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +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.
25 lines
598 B
Text
25 lines
598 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 -m -r $TRACES/globus-url-copy.trace %INPUT
|
|
# @TEST-EXEC: btest-bg-wait 15
|
|
|
|
@load base/protocols/ftp/gridftp
|
|
|
|
module GridFTP;
|
|
|
|
redef size_threshold = 2;
|
|
|
|
redef enum Notice::Type += {
|
|
Data_Channel
|
|
};
|
|
|
|
event GridFTP::data_channel_detected(c: connection)
|
|
{
|
|
local msg = fmt("GridFTP data channel over threshold %d bytes",
|
|
size_threshold);
|
|
NOTICE([$note=Data_Channel, $msg=msg, $conn=c]);
|
|
}
|