diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-09-25 17:26:36 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-09-25 17:46:22 +0200 |
commit | 4058ada173f6e868e70a667078f5a770ae8efa7c (patch) | |
tree | 5ecc854afb72d695589e83df666a080a58681ad9 /python/test/Ice/servantLocator/TestI.py | |
parent | Update .NET Core default target framework to .netcoreapp3.0 (diff) | |
download | ice-4058ada173f6e868e70a667078f5a770ae8efa7c.tar.bz2 ice-4058ada173f6e868e70a667078f5a770ae8efa7c.tar.xz ice-4058ada173f6e868e70a667078f5a770ae8efa7c.zip |
Fixed Python bug related to invalid return parameters, fixes #550
Diffstat (limited to 'python/test/Ice/servantLocator/TestI.py')
-rw-r--r-- | python/test/Ice/servantLocator/TestI.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/test/Ice/servantLocator/TestI.py b/python/test/Ice/servantLocator/TestI.py index 9e2345b0fe9..0ffe602ea49 100644 --- a/python/test/Ice/servantLocator/TestI.py +++ b/python/test/Ice/servantLocator/TestI.py @@ -89,6 +89,12 @@ class ServantLocatorI(Ice.ServantLocator): if current.id.name == "unknown": return None + if current.id.name == "invalidReturnValue": + return (45, 12) + + if current.id.name == "invalidReturnType": + return "invalid" + test(current.id.name == "locate" or current.id.name == "finished") if current.id.name == "locate": self.exception(current) |