diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-12-21 15:40:58 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-12-21 15:40:58 +0100 |
commit | 481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9 (patch) | |
tree | 9675873d4f28bce747d7d38701305d5ffc2e9324 /scripts/Util.py | |
parent | Fixed --filter/--rfilter issue when platform filters are set (diff) | |
download | ice-481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9.tar.bz2 ice-481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9.tar.xz ice-481cc0255ad32307bc35b0f3a6f73e3ce2acb9f9.zip |
Added support for running browser test with WebWorkers
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index bddd35b4f53..df8962c56e0 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1764,7 +1764,7 @@ class RemoteProcessController(ProcessController): self.cond.wait(10) if ident in self.processControllerProxies: return self.processControllerProxies[ident] - raise RuntimeError("couldn't reach the remote controller `{0}'".format(proxy)) + raise RuntimeError("couldn't reach the remote controller `{0}'".format(ident)) def setProcessController(self, proxy): @@ -1974,7 +1974,7 @@ class BrowserProcessController(RemoteProcessController): # will connect to the process controller registry to register itself with this script. # testsuite = ("es5/" if current.config.es5 else "") + str(current.testsuite) - if current.config.protocol == "ws": + if current.config.protocol == "wss": protocol = "https" port = "9090" cport = "15003" |