From: Jan Hák Date: Tue, 27 Jan 2026 12:07:03 +0000 (+0100) Subject: tests-extra: force forking in multiprocessing library to avoid serialization problems... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5971e97f7faee309ae251b660f398dae59ecc4cd;p=thirdparty%2Fknot-dns.git tests-extra: force forking in multiprocessing library to avoid serialization problems with multiprocessing.Process --- diff --git a/tests-extra/runtests.py b/tests-extra/runtests.py index d9d5ea935f..87d092ba5e 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)