mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
Merge branch 'master' into topic/jsiwek/supervisor
This commit is contained in:
commit
520c6e3ebf
28 changed files with 60 additions and 30 deletions
28
CHANGES
28
CHANGES
|
@ -1,4 +1,32 @@
|
||||||
|
|
||||||
|
3.1.0-dev.372 | 2020-01-13 12:10:42 +0000
|
||||||
|
|
||||||
|
* Fix method returning a reference to a temporary. Found by
|
||||||
|
cppcheck, via by Arthur Wong. (Robin Sommer, Corelight)
|
||||||
|
|
||||||
|
3.1.0-dev.370 | 2020-01-09 19:04:59 -0800
|
||||||
|
|
||||||
|
* Update timeouts for a btest (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
3.1.0-dev.368 | 2020-01-09 13:39:38 -0800
|
||||||
|
|
||||||
|
* Extend ASAN_OPTIONS in btests instead of overwrite (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
3.1.0-dev.366 | 2020-01-09 12:28:32 -0800
|
||||||
|
|
||||||
|
* Update external test repo commit hash (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
3.1.0-dev.365 | 2020-01-09 11:38:06 -0800
|
||||||
|
|
||||||
|
* Enable LeakSanitizer for unit tests run via doctest (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
3.1.0-dev.363 | 2020-01-09 10:25:24 -0800
|
||||||
|
|
||||||
|
* fix NTLM field value access
|
||||||
|
|
||||||
|
The fields being checked for existence were not the same as the fields
|
||||||
|
being accessed. (Justin Azoff, Corelight)
|
||||||
|
|
||||||
3.1.0-dev.361 | 2020-01-08 10:29:59 -0800
|
3.1.0-dev.361 | 2020-01-08 10:29:59 -0800
|
||||||
|
|
||||||
* Increase timeout for a few btests (Jon Siwek, Corelight)
|
* Increase timeout for a few btests (Jon Siwek, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
3.1.0-dev.361
|
3.1.0-dev.372
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit ee7932525ff198f1270b3d941f449da5f939f29c
|
Subproject commit ad61dd7f402a831c299f688f20ba23f50b1b5c8e
|
|
@ -1 +1 @@
|
||||||
Subproject commit 17f3b239f5551d8a9050a8d26a254e516db5c393
|
Subproject commit 6933b86e60f22f7a39ac1a8adbee4867902ce02e
|
2
doc
2
doc
|
@ -1 +1 @@
|
||||||
Subproject commit 3bd1c12b9e2810b2cbe5e05629ddc59dd83d9d36
|
Subproject commit 7192dbedf3ca9ce49294057262074f0e888177f3
|
|
@ -65,9 +65,9 @@ event ntlm_challenge(c: connection, challenge: NTLM::Challenge) &priority=5
|
||||||
if ( challenge?$target_info )
|
if ( challenge?$target_info )
|
||||||
{
|
{
|
||||||
local ti = challenge$target_info;
|
local ti = challenge$target_info;
|
||||||
if ( ti?$nb_domain_name )
|
if ( ti?$nb_computer_name )
|
||||||
c$ntlm$server_nb_computer_name = ti$nb_computer_name;
|
c$ntlm$server_nb_computer_name = ti$nb_computer_name;
|
||||||
if ( ti?$dns_domain_name )
|
if ( ti?$dns_computer_name )
|
||||||
c$ntlm$server_dns_computer_name = ti$dns_computer_name;
|
c$ntlm$server_dns_computer_name = ti$dns_computer_name;
|
||||||
if ( ti?$dns_tree_name )
|
if ( ti?$dns_tree_name )
|
||||||
c$ntlm$server_tree_name = ti$dns_tree_name;
|
c$ntlm$server_tree_name = ti$dns_tree_name;
|
||||||
|
|
|
@ -886,6 +886,7 @@ int main(int argc, char** argv)
|
||||||
doctest::Context context;
|
doctest::Context context;
|
||||||
auto dargs = to_cargs(options.doctest_args);
|
auto dargs = to_cargs(options.doctest_args);
|
||||||
context.applyCommandLine(dargs.size(), dargs.data());
|
context.applyCommandLine(dargs.size(), dargs.data());
|
||||||
|
ZEEK_LSAN_ENABLE();
|
||||||
return context.run();
|
return context.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -139,7 +139,7 @@ ComponentManager<T, C>::ComponentManager(const string& arg_module, const string&
|
||||||
template <class T, class C>
|
template <class T, class C>
|
||||||
const std::string& ComponentManager<T, C>::GetModule() const
|
const std::string& ComponentManager<T, C>::GetModule() const
|
||||||
{
|
{
|
||||||
return module.c_str();
|
return module;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T, class C>
|
template <class T, class C>
|
||||||
|
|
|
@ -167,6 +167,7 @@ TEST_CASE("util get_escaped_string")
|
||||||
{
|
{
|
||||||
ODesc* d = get_escaped_string(nullptr, "a bcd\n", 6, false);
|
ODesc* d = get_escaped_string(nullptr, "a bcd\n", 6, false);
|
||||||
CHECK(strcmp(d->Description(), "a\\x20bcd\\x0a") == 0);
|
CHECK(strcmp(d->Description(), "a\\x20bcd\\x0a") == 0);
|
||||||
|
delete d;
|
||||||
}
|
}
|
||||||
|
|
||||||
SUBCASE("provided ODesc")
|
SUBCASE("provided ODesc")
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT >out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT >out 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
||||||
|
|
||||||
event div_int(a: int, b: int)
|
event div_int(a: int, b: int)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# shouldn't abort Zeek entirely, but just return from the function body.
|
# shouldn't abort Zeek entirely, but just return from the function body.
|
||||||
#
|
#
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -r $TRACES/wikipedia.trace %INPUT >output
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -r $TRACES/wikipedia.trace %INPUT >output
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
||||||
# @TEST-EXEC: btest-diff output
|
# @TEST-EXEC: btest-diff output
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# than looping indefinitly, the error inside the handler should reported to stderr.
|
# than looping indefinitly, the error inside the handler should reported to stderr.
|
||||||
#
|
#
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek %INPUT >output 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek %INPUT >output 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
||||||
|
|
||||||
global a: table[count] of count;
|
global a: table[count] of count;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" btest-bg-run zeek "zeek -b %INPUT >output 2>&1"
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" btest-bg-run zeek "zeek -b %INPUT >output 2>&1"
|
||||||
# @TEST-EXEC: btest-bg-wait 30
|
# @TEST-EXEC: btest-bg-wait 30
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps | $SCRIPTS/diff-sort" btest-diff zeek/output
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps | $SCRIPTS/diff-sort" btest-diff zeek/output
|
||||||
|
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
# of the current event handler body.
|
# of the current event handler body.
|
||||||
|
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b 1.zeek >1.out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b 1.zeek >1.out 2>&1
|
||||||
# @TEST-EXEC: btest-diff 1.out
|
# @TEST-EXEC: btest-diff 1.out
|
||||||
|
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b 2.zeek >2.out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b 2.zeek >2.out 2>&1
|
||||||
# @TEST-EXEC: btest-diff 2.out
|
# @TEST-EXEC: btest-diff 2.out
|
||||||
|
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b 3.zeek >3.out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b 3.zeek >3.out 2>&1
|
||||||
# @TEST-EXEC: btest-diff 3.out
|
# @TEST-EXEC: btest-diff 3.out
|
||||||
|
|
||||||
@TEST-START-FILE 1.zeek
|
@TEST-START-FILE 1.zeek
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# TODO: There's explicitly a reference cycle being created in this test that
|
# TODO: There's explicitly a reference cycle being created in this test that
|
||||||
# causes a memory leak, so just disable leak checking.
|
# causes a memory leak, so just disable leak checking.
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT >out
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT >out
|
||||||
# @TEST-EXEC: btest-diff out
|
# @TEST-EXEC: btest-diff out
|
||||||
|
|
||||||
type B: record {
|
type B: record {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT
|
||||||
# @TEST-EXEC: cp .stderr output
|
# @TEST-EXEC: cp .stderr output
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -r $TRACES/rotation.trace -b %INPUT >output 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -r $TRACES/rotation.trace -b %INPUT >output 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
||||||
|
|
||||||
module segfault;
|
module segfault;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT >output 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT >output 2>&1
|
||||||
# @TEST-EXEC: grep "error" output >output2
|
# @TEST-EXEC: grep "error" output >output2
|
||||||
# @TEST-EXEC: for i in 1 2 3 4 5; do cat output2 | cut -d'|' -f$i >>out; done
|
# @TEST-EXEC: for i in 1 2 3 4 5; do cat output2 | cut -d'|' -f$i >>out; done
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT >out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT >out 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
||||||
|
|
||||||
global foo: vector of count = { 42 };
|
global foo: vector of count = { 42 };
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT >out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT >out 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
||||||
|
|
||||||
event zeek_init()
|
event zeek_init()
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT >output 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT >output 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
|
||||||
|
|
||||||
type X: record {
|
type X: record {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b first_set.zeek >first_set.out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b first_set.zeek >first_set.out 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff first_set.out
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff first_set.out
|
||||||
|
|
||||||
# @TEST-EXEC-FAIL: zeek -b double_convert_failure1.zeek >double_convert_failure1.out 2>&1
|
# @TEST-EXEC-FAIL: zeek -b double_convert_failure1.zeek >double_convert_failure1.out 2>&1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek -b %INPUT >out 2>&1
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek -b %INPUT >out 2>&1
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff out
|
||||||
|
|
||||||
event test()
|
event test()
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# @TEST-EXEC: cp -r %DIR/reporter-hook-plugin/* .
|
# @TEST-EXEC: cp -r %DIR/reporter-hook-plugin/* .
|
||||||
# @TEST-EXEC: ./configure --zeek-dist=${DIST} && make
|
# @TEST-EXEC: ./configure --zeek-dist=${DIST} && make
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" ZEEK_PLUGIN_ACTIVATE="Reporter::Hook" ZEEK_PLUGIN_PATH=`pwd` zeek -b %INPUT 2>&1 | $SCRIPTS/diff-remove-abspath | sort | uniq >output
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" ZEEK_PLUGIN_ACTIVATE="Reporter::Hook" ZEEK_PLUGIN_PATH=`pwd` zeek -b %INPUT 2>&1 | $SCRIPTS/diff-remove-abspath | sort | uniq >output
|
||||||
# @TEST-EXEC: btest-diff output
|
# @TEST-EXEC: btest-diff output
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
||||||
|
|
||||||
|
|
|
@ -4,12 +4,12 @@
|
||||||
# failing behavior.
|
# failing behavior.
|
||||||
|
|
||||||
# @TEST-EXEC: btest-bg-run zeek zeek %INPUT
|
# @TEST-EXEC: btest-bg-run zeek zeek %INPUT
|
||||||
# @TEST-EXEC: $SCRIPTS/wait-for-file zeek/init 5 || (btest-bg-wait -k 1 && false)
|
# @TEST-EXEC: $SCRIPTS/wait-for-file zeek/init 10 || (btest-bg-wait -k 1 && false)
|
||||||
# @TEST-EXEC: mv does-exist.dat does-not-exist.dat
|
# @TEST-EXEC: mv does-exist.dat does-not-exist.dat
|
||||||
# @TEST-EXEC: $SCRIPTS/wait-for-file zeek/next 5 || (btest-bg-wait -k 1 && false)
|
# @TEST-EXEC: $SCRIPTS/wait-for-file zeek/next 10 || (btest-bg-wait -k 1 && false)
|
||||||
# @TEST-EXEC: mv does-not-exist.dat does-not-exist-again.dat
|
# @TEST-EXEC: mv does-not-exist.dat does-not-exist-again.dat
|
||||||
# @TEST-EXEC: echo "3 streaming still works" >> does-not-exist-again.dat
|
# @TEST-EXEC: echo "3 streaming still works" >> does-not-exist-again.dat
|
||||||
# @TEST-EXEC: btest-bg-wait 5
|
# @TEST-EXEC: btest-bg-wait 10
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-sort btest-diff zeek/.stdout
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-sort btest-diff zeek/.stdout
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-sort btest-diff zeek/.stderr
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-sort btest-diff zeek/.stderr
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek %INPUT
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek %INPUT
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
# TODO: interpreter exceptions currently may cause memory leaks, so disable leak checks
|
||||||
# @TEST-EXEC: ASAN_OPTIONS="detect_leaks=0" zeek %INPUT
|
# @TEST-EXEC: ASAN_OPTIONS="$ASAN_OPTIONS,detect_leaks=0" zeek %INPUT
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
||||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER="$SCRIPTS/diff-remove-abspath | $SCRIPTS/diff-remove-timestamps" btest-diff reporter.log
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
931f49917a86a260c69e091c2f66b693e74b33bf
|
f6b4374ade1603e0731488bea5fe9d8087c6288f
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue