Commit 13057d83 authored by Denis Bilenko's avatar Denis Bilenko

testrunner.py: fix RuntimeError: dictionary size

parent 3718930b
......@@ -89,7 +89,7 @@ def run_many(tests, expected=None, failfast=False):
if NWORKERS > 1 and toretry:
util.log('\nWill retry %s failed tests sequentially:\n- %s\n', len(toretry), '\n- '.join(toretry))
for name, (cmd, kwargs, _ignore) in failed.items():
for name, (cmd, kwargs, _ignore) in list(failed.items()):
if not util.run(cmd, buffer_output=False, **kwargs):
failed.pop(name)
failed_then_succeeded.append(name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment