mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 14:52:16 +00:00
Bug 551222 Update runtestremote.py to account for changes in runtests.py for winmo refactoring r=ctalbert
This commit is contained in:
parent
b6fdcf4a52
commit
065fdc1f30
@ -109,6 +109,20 @@ class RemoteOptions(MochitestOptions):
|
||||
help = "Name of log file on the device. PLEASE ENSURE YOU HAVE CORRECT \ or / FOR THE PATH.")
|
||||
defaults["remoteLogFile"] = None
|
||||
|
||||
self.add_option("--remote-webserver", action = "store",
|
||||
type = "string", dest = "remoteWebServer",
|
||||
help = "ip address where the remote web server is hosted at")
|
||||
defaults["remoteWebServer"] = None
|
||||
|
||||
self.add_option("--http-port", action = "store",
|
||||
type = "string", dest = "httpPort",
|
||||
help = "ip address where the remote web server is hosted at")
|
||||
defaults["httpPort"] = automation.DEFAULT_HTTP_PORT
|
||||
|
||||
self.add_option("--ssl-port", action = "store",
|
||||
type = "string", dest = "sslPort",
|
||||
help = "ip address where the remote web server is hosted at")
|
||||
defaults["sslPort"] = automation.DEFAULT_SSL_PORT
|
||||
|
||||
defaults["logFile"] = "mochitest.log"
|
||||
if (automation._product == "fennec"):
|
||||
@ -130,9 +144,9 @@ class RemoteOptions(MochitestOptions):
|
||||
options.app = sys.argv[0]
|
||||
options = MochitestOptions.verifyOptions(self, options, mochitest)
|
||||
options.app = temp
|
||||
|
||||
|
||||
if (options.remoteWebServer == None):
|
||||
print "ERROR: you must provide a remote webserver"
|
||||
print "ERROR: you must provide a remote webserver ip address"
|
||||
return None
|
||||
|
||||
if (options.deviceIP == None):
|
||||
|
Loading…
Reference in New Issue
Block a user