summaryrefslogtreecommitdiff
path: root/python/test/Ice/operations/Client.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-02-06 15:37:35 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-02-06 15:37:35 +0100
commitcf56800aced9d820b75ddf9d29cc15afe92f7d6f (patch)
tree8417d1ccc269432f55348ac2d0a46c125e695d4c /python/test/Ice/operations/Client.py
parentFixed ICE-7558 - Reduce chances to lose datagrams by tuning the buffer size a... (diff)
downloadice-cf56800aced9d820b75ddf9d29cc15afe92f7d6f.tar.bz2
ice-cf56800aced9d820b75ddf9d29cc15afe92f7d6f.tar.xz
ice-cf56800aced9d820b75ddf9d29cc15afe92f7d6f.zip
Fixed ICE-7531 - ValueFactoryManager segfault
Diffstat (limited to 'python/test/Ice/operations/Client.py')
-rwxr-xr-xpython/test/Ice/operations/Client.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/test/Ice/operations/Client.py b/python/test/Ice/operations/Client.py
index 6bcc4502d00..ac05c5bf42a 100755
--- a/python/test/Ice/operations/Client.py
+++ b/python/test/Ice/operations/Client.py
@@ -51,6 +51,9 @@ try:
with Ice.initialize(sys.argv, initData) as communicator:
status = run(sys.argv, communicator)
+ # Test multiple destroy calls
+ communicator.destroy()
+ communicator.destroy()
except:
traceback.print_exc()
status = False