diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-01-26 08:32:15 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-01-26 08:32:15 +0100 |
commit | 655ce0efca250a8103e51883f1b7dd34a9a0df4f (patch) | |
tree | 8dedf5435f225517b9c49ce52de0835fed803aee /python/test/Ice/operations/Client.py | |
parent | First cut of ICE-6920 - Remove try/catch block around communicator destroy (diff) | |
download | ice-655ce0efca250a8103e51883f1b7dd34a9a0df4f.tar.bz2 ice-655ce0efca250a8103e51883f1b7dd34a9a0df4f.tar.xz ice-655ce0efca250a8103e51883f1b7dd34a9a0df4f.zip |
Fixed ICE-7496 - Ice/binding too slow, speed up of tests on Windows
Diffstat (limited to 'python/test/Ice/operations/Client.py')
-rwxr-xr-x | python/test/Ice/operations/Client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Ice/operations/Client.py b/python/test/Ice/operations/Client.py index 650cc34ebf3..2815874b243 100755 --- a/python/test/Ice/operations/Client.py +++ b/python/test/Ice/operations/Client.py @@ -31,7 +31,7 @@ def run(args, communicator): sys.stdout.flush() myClass.shutdown() try: - myClass.opVoid() + myClass.ice_timeout(100).ice_ping(); # Use timeout to speed up testing on Windows test(False) except Ice.LocalException: print("ok") |