From 47aeb7520b5ba7d705a0976c9750b18ba5992e8c Mon Sep 17 00:00:00 2001 From: Tharushi Jayasekara Date: Tue, 16 Feb 2021 22:13:24 +0530 Subject: [PATCH] parallel runs: initialize failedLogs on non-Linux --- run.py | 1 + 1 file changed, 1 insertion(+) 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 -- 2.47.2