diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-01-27 12:32:00 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-01-27 12:32:00 +0100 |
commit | 876bb37a664f07c2ff40cf20aca99a24cb577448 (patch) | |
tree | 6faf52a907d02cbf87a1bafcef851a0be33d6aec /scripts/Controller.py | |
parent | Disable PHP namespaces with travis builds (diff) | |
download | ice-876bb37a664f07c2ff40cf20aca99a24cb577448.tar.bz2 ice-876bb37a664f07c2ff40cf20aca99a24cb577448.tar.xz ice-876bb37a664f07c2ff40cf20aca99a24cb577448.zip |
Fixed Python controller dispatch interfaces
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-x | scripts/Controller.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/Controller.py b/scripts/Controller.py index 85934176d0d..236c78e226f 100755 --- a/scripts/Controller.py +++ b/scripts/Controller.py @@ -77,11 +77,12 @@ class ControllerDriver(Driver): print("ok") print("run " + sys.argv[0] + " --clean to remove the trust setting") + self.initCommunicator() import Ice Ice.loadSlice(os.path.join(toplevel, "scripts", "Controller.ice")) import Test - class TestCaseI(Test.Common.TestCase): + class TestCaseI(Test.Common._TestCaseDisp): def __init__(self, driver, current): self.driver = driver self.current = current @@ -129,7 +130,7 @@ class ControllerDriver(Driver): self.current.config.parsedOptions.append(a) setattr(self.current.config, a, v) - class ControllerI(Test.Common.Controller): + class ControllerI(Test.Common._ControllerDisp): def __init__(self, driver): self.driver = driver self.testcase = None |