author | Andrew Halberstadt <ahalberstadt@mozilla.com> |
Fri, 05 Oct 2012 11:12:05 -0400 | |
changeset 109725 | 22d192c5d1fd86f86bfe680bf78dc938df79bd31 |
parent 109724 | dd61540f237caed9b66e05419ecc200ef6f1f51d |
child 109726 | 05e1bb4d7cd8673d203cd3928a7d2736be9d3505 |
child 110979 | 72e05828334d4aeb018253e396ce7f4d535a9120 |
push id | 23649 |
push user | jgriffin@mozilla.com |
push date | Tue, 09 Oct 2012 17:02:01 +0000 |
treeherder | mozilla-central@22d192c5d1fd [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jgriffin, DONTBUILD |
bugs | 795099 |
milestone | 19.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/layout/tools/reftest/runreftestb2g.py +++ b/layout/tools/reftest/runreftestb2g.py @@ -95,16 +95,21 @@ class B2GOptions(ReftestOptions): type = "string", dest = "sslPort", help = "ip address where the remote web server is hosted at") defaults["sslPort"] = automation.DEFAULT_SSL_PORT self.add_option("--pidfile", action = "store", type = "string", dest = "pidFile", help = "name of the pidfile to generate") defaults["pidFile"] = "" + self.add_option("--gecko-path", action="store", + type="string", dest="geckoPath", + help="the path to a gecko distribution that should " + "be installed on the emulator prior to test") + defaults["geckoPath"] = None defaults["remoteTestRoot"] = None defaults["logFile"] = "reftest.log" defaults["autorun"] = True defaults["closeWhenDone"] = True defaults["testPath"] = "" self.set_defaults(**defaults) @@ -120,16 +125,19 @@ class B2GOptions(ReftestOptions): if os.name != "nt": options.remoteWebServer = self._automation.getLanIp() else: print "ERROR: you must specify a --remote-webserver=<ip address>\n" return None options.webServer = options.remoteWebServer + if options.geckoPath and not options.emulator: + self.error("You must specify --emulator if you specify --gecko-path") + #if not options.emulator and not options.deviceIP: # print "ERROR: you must provide a device IP" # return None if options.remoteLogFile == None: options.remoteLogFile = "reftest.log" options.localLogName = options.remoteLogFile @@ -442,16 +450,18 @@ def main(args=sys.argv[1:]): if options.emulator_res: kwargs['emulator_res'] = options.emulator_res if options.b2gPath: kwargs['homedir'] = options.b2gPath if options.marionette: host,port = options.marionette.split(':') kwargs['host'] = host kwargs['port'] = int(port) + if options.geckoPath: + kwargs['gecko_path'] = options.geckoPath marionette = Marionette(**kwargs) auto.marionette = marionette # create the DeviceManager kwargs = {'adbPath': options.adbPath} if options.deviceIP: kwargs.update({'host': options.deviceIP, 'port': options.devicePort})