summaryrefslogtreecommitdiff
path: root/js/test/Common/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'js/test/Common/run.py')
-rwxr-xr-xjs/test/Common/run.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/test/Common/run.py b/js/test/Common/run.py
index 13e9fe76d77..a0975bf303f 100755
--- a/js/test/Common/run.py
+++ b/js/test/Common/run.py
@@ -84,7 +84,7 @@ class ControllerI(Test.Controller):
def __init__(self):
self.currentServer = None
- def runServer(self, lang, name, protocol, host, current):
+ def runServer(self, lang, name, protocol, host, options, current):
# If server is still running, terminate it
if self.currentServer:
@@ -112,7 +112,7 @@ class ControllerI(Test.Controller):
serverCfg = TestUtil.DriverConfig("server")
serverCfg.protocol = protocol
serverCfg.host = host
- server = TestUtil.getCommandLine(server, serverCfg)
+ server = TestUtil.getCommandLine(server, serverCfg, options)
serverProc = TestUtil.spawnServer(server, env = serverenv, lang=serverCfg.lang, mx=serverCfg.mx)
print("ok")
finally: