summaryrefslogtreecommitdiff
path: root/scripts/Controller.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2019-07-18 23:51:08 +0200
committerJose <jose@zeroc.com>2019-07-18 23:51:08 +0200
commitfc886b010c01cccb8cca3ac4d92f1ebd7fc72295 (patch)
tree51cf00a4a955efecc9c94527aeafcb25ffbe57b9 /scripts/Controller.py
parentSimplify OutputStream creation (diff)
parentFixed non-thread safe AMD dispatch, fixes #448 (#449) (diff)
downloadice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.tar.bz2
ice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.tar.xz
ice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.zip
Merge remote-tracking branch 'origin/3.7' into swift
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-xscripts/Controller.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/Controller.py b/scripts/Controller.py
index 30c1d0dcb13..f0337fc7d7e 100755
--- a/scripts/Controller.py
+++ b/scripts/Controller.py
@@ -139,7 +139,8 @@ class ControllerDriver(Driver):
self.testcase = None
current = self.driver.getCurrent(mapping, testsuite, testcase, cross)
- self.testcase = Test.Common.TestCasePrx.uncheckedCast(c.adapter.addWithUUID(TestCaseI(self.driver, current)))
+ prx = c.adapter.addWithUUID(TestCaseI(self.driver, current))
+ self.testcase = Test.Common.TestCasePrx.uncheckedCast(c.adapter.createDirectProxy(prx.ice_getIdentity()))
return self.testcase
def getTestSuites(self, mapping, c):