diff options
author | Jose <jose@zeroc.com> | 2019-06-07 11:33:31 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-06-07 11:33:31 +0200 |
commit | 7d9486b9113d5bbb533ced14d4e145faf97dcda2 (patch) | |
tree | 6c7899e633ddf97c03df49156b1483b23010da3b /python/test/Ice/operations/TestAMDI.py | |
parent | Fix code format fixes (diff) | |
parent | JavaScript browser testing fixes (diff) | |
download | ice-7d9486b9113d5bbb533ced14d4e145faf97dcda2.tar.bz2 ice-7d9486b9113d5bbb533ced14d4e145faf97dcda2.tar.xz ice-7d9486b9113d5bbb533ced14d4e145faf97dcda2.zip |
Merge remote-tracking branch 'origin/3.7' into swift
Diffstat (limited to 'python/test/Ice/operations/TestAMDI.py')
-rwxr-xr-x | python/test/Ice/operations/TestAMDI.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/python/test/Ice/operations/TestAMDI.py b/python/test/Ice/operations/TestAMDI.py index 9e89185ece0..305b8e79faa 100755 --- a/python/test/Ice/operations/TestAMDI.py +++ b/python/test/Ice/operations/TestAMDI.py @@ -11,7 +11,7 @@ if not slice_dir: sys.exit(1) Ice.loadSlice("'-I" + slice_dir + "' Test.ice") -import Test +import Test, M def test(b): if not b: @@ -27,6 +27,14 @@ class FutureThread(threading.Thread): time.sleep(0.01) self.future.set_result(self.result) + +class BI(M.BDisp): + def opB(self, current=None): + return Ice.Future.completed(()) + + def opIntf(self, current=None): + return Ice.Future.completed(()) + class MyDerivedClassI(Test.MyDerivedClass): def __init__(self): self.threads = [] |