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

Commit

Permalink
bug 551312 - plan for qt on device testing and browser_wait by platfo…
Browse files Browse the repository at this point in the history
…rm r=aki p=me
  • Loading branch information
John Ford committed Apr 3, 2010
1 parent c4a7470 commit d83d156
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions process/mobiletestfactoryrw.py
Expand Up @@ -82,7 +82,7 @@ def __init__(self, test, timeout, branch=None, talos_config_file='sample.config'
hg_host='http://hg.mozilla.org', tools_repo_path='build/tools',
talos_tarball=None, pageloader_tarball=None,
cleanup_glob='tools talos fennec* xul* *.tar.bz2',
tp4_source='/tools/tp4', **kwargs):
tp4_source='/tools/tp4', browser_wait=7, **kwargs):
BuildFactory.__init__(self, **kwargs)
self.test = test
self.timeout = timeout
Expand All @@ -100,6 +100,7 @@ def __init__(self, test, timeout, branch=None, talos_config_file='sample.config'
self.pageloader_tarball = pageloader_tarball
self.cleanup_glob = cleanup_glob
self.tp4_source = tp4_source
self.browser_wait = browser_wait

self.addStartupSteps()
self.addCleanupSteps()
Expand Down Expand Up @@ -269,7 +270,7 @@ def addRunSteps(self):
'--branchName', self.branch,
'--activeTests', self.test,
'--sampleConfig', self.talos_config_file,
'--browserWait', '7', #str(self.timeout),
'--browserWait', str(self.browser_wait),
'--resultsServer', self.results_server,
self.nochrome,
'--resultsLink', '/server/collect.cgi',
Expand Down

0 comments on commit d83d156

Please sign in to comment.