From: Tharushi Jayasekara Date: Tue, 16 Feb 2021 16:43:24 +0000 (+0530) Subject: parallel runs: initialize failedLogs on non-Linux X-Git-Tag: suricata-6.0.4~151 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47aeb7520b5ba7d705a0976c9750b18ba5992e8c;p=thirdparty%2Fsuricata-verify.git parallel runs: initialize failedLogs on non-Linux --- diff --git a/run.py b/run.py index 1f7936b20..636a5f060 100755 --- a/run.py +++ b/run.py @@ -55,6 +55,7 @@ if LINUX: count_dict = manager.dict() check_args = manager.dict() else: + failedLogs = [] count_dict = {} check_args = {} # Bring in a lock from threading to satisfy the MP semantics when