Bug 1175708 - Followup to fix windows jstests.py bustage on a CLOSED TREE; r=meow

--HG--
extra : rebase_source : c60a073f01072fec9ccb4aaf3324e518efa18283
This commit is contained in:
Terrence Cole 2015-06-18 10:33:34 -07:00
parent 3a61e232f7
commit 6e6ad85afd

View File

@ -12,7 +12,7 @@ class EndMarker:
pass
def _do_work(qTasks, qResults, timeout):
def _do_work(qTasks, qResults, prefix, timeout):
while True:
test = qTasks.get(block=True, timeout=sys.maxint)
if test is EndMarker:
@ -61,8 +61,8 @@ def run_all_tests_gen(tests, prefix, results, options):
assert qResults.empty(), "Result queue not drained"
def run_all_tests(tests, results, options):
for result in run_all_tests_gen(tests, results, options):
def run_all_tests(tests, prefix, results, options):
for result in run_all_tests_gen(tests, prefix, results, options):
results.push(result)
return True