From: Victor Julien Date: Thu, 2 Nov 2017 14:20:26 +0000 (+0100) Subject: rule testing: don't fail because of ASAN leak warnings X-Git-Tag: 1.0.0a1~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5d2be9514f4a5495e05f7b250bd33a7aaf74637;p=thirdparty%2Fsuricata-update.git rule testing: don't fail because of ASAN leak warnings --- diff --git a/suricata/update/engine.py b/suricata/update/engine.py index d6b6afc..16a6b6f 100644 --- a/suricata/update/engine.py +++ b/suricata/update/engine.py @@ -90,6 +90,7 @@ def test_configuration(path, rule_filename=None): env = { "SC_LOG_FORMAT": "%t - <%d> -- ", "SC_LOG_LEVEL": "Warning", + "ASAN_OPTIONS": "detect_leaks=0", } rc = subprocess.Popen(test_command, env=env).wait()