From 8458300a50f06700e19254b11e5626a2734b5284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=A1k?= Date: Tue, 27 Jan 2026 13:07:03 +0100 Subject: [PATCH] tests-extra: force forking in multiprocessing library to avoid serialization problems with multiprocessing.Process --- tests-extra/runtests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests-extra/runtests.py b/tests-extra/runtests.py index d9d5ea935..87d092ba5 100755 --- a/tests-extra/runtests.py +++ b/tests-extra/runtests.py @@ -259,6 +259,8 @@ def main(args): global log global outs_dir + multiprocessing.set_start_method('fork') + tasks = multiprocessing.Queue() results = multiprocessing.SimpleQueue() stop = multiprocessing.Value('i', False)