www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit e7d5f31d042c1751a35a5e4e693e79fbe8f84213
parent 9f218caf7512462e707c832bded4c38459b275e1
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 18 Jul 2011 21:33:55 +0000

Restore ability to run multiple translator tests simultaneously


Diffstat:
Mchrome/content/zotero/tools/testTranslators/testTranslators.js | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/chrome/content/zotero/tools/testTranslators/testTranslators.js b/chrome/content/zotero/tools/testTranslators/testTranslators.js @@ -321,7 +321,9 @@ function init() { var testView = translatorTestViewsToRun[type][i]; testView.updateStatus(testView._translatorTester, "pending"); } - runTranslatorTests(type); + for(var i=0; i<NUM_CONCURRENT_TESTS; i++) { + runTranslatorTests(type); + } } }, false); h1.appendChild(runAll);