Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
Bug 865443 - create webgl mochitest run for android r=armenzg
Browse files Browse the repository at this point in the history
  • Loading branch information
kmoir committed May 3, 2013
1 parent b956940 commit f35db4c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions process/factory.py
Expand Up @@ -5406,19 +5406,19 @@ def ifAPanda(build):
stepProc = unittest_steps.RemoteMochitestBrowserChromeStep
else:
stepProc = unittest_steps.RemoteMochitestStep
if suite.get('testPaths', None):
for tp in suite.get('testPaths', []):
self.addStep(stepProc(
variant=variant,
symbols_path=symbols_path,
testPath=tp,
slowTests=WithProperties('%(slowTests)s'),
workdir='build/tests',
timeout=2400,
env=self.env,
log_eval_func=lambda c, s: regex_log_evaluator(c, s,
global_errors + tegra_errors),
))
if suite.get('testPath', None):
tp = suite.get('testPath', [])
self.addStep(stepProc(
variant=variant,
symbols_path=symbols_path,
testPath=tp,
slowTests=WithProperties('%(slowTests)s'),
workdir='build/tests',
timeout=2400,
env=self.env,
log_eval_func=lambda c, s: regex_log_evaluator(c, s,
global_errors + tegra_errors),
))

else:
totalChunks = suite.get('totalChunks', None)
Expand Down

0 comments on commit f35db4c

Please sign in to comment.