diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-02-06 15:37:35 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-02-06 15:37:35 +0100 |
commit | cf56800aced9d820b75ddf9d29cc15afe92f7d6f (patch) | |
tree | 8417d1ccc269432f55348ac2d0a46c125e695d4c /python/test/Ice/operations/Client.py | |
parent | Fixed ICE-7558 - Reduce chances to lose datagrams by tuning the buffer size a... (diff) | |
download | ice-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-x | python/test/Ice/operations/Client.py | 3 |
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 |