Commit fb036f13 authored by Denis Bilenko's avatar Denis Bilenko

greentest/testrunner.py: better error message

parent b9ceb311
......@@ -19,7 +19,7 @@ pool = None
def spawn(*args, **kwargs):
g = pool.spawn(*args, **kwargs)
g.link_exception(lambda *args: sys.exit('Internal error in testrunner.py'))
g.link_exception(lambda *args: sys.exit('Internal error in testrunner.py: %s %s' % (g, g.exception)))
return g
......
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