Skip to content
Snippets Groups Projects
Commit dfa4aa52 authored by Jan Hák's avatar Jan Hák Committed by Daniel Salzman
Browse files

tests-extra: fixed result counting


Signed-off-by: Jan Hák's avatarJan Hak <jan.hak@nic.cz>
parent 9bb733a3
No related branches found
No related tags found
No related merge requests found
Pipeline #69933 passed
......@@ -240,7 +240,7 @@ def main(args):
global outs_dir
tasks = multiprocessing.Queue()
results = multiprocessing.Queue()
results = multiprocessing.SimpleQueue()
case_cnt = 0
fail_cnt = 0
......@@ -294,7 +294,7 @@ def main(args):
job(tasks, results)
while not results.empty():
a, b, c = results.get(block=False)
a, b, c = results.get()
case_cnt += a
fail_cnt += b
skip_cnt += c
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment