diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-09-16 11:22:03 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-09-16 11:22:03 +0200 |
commit | 6cf8d1219c6bd00b025bbcc6fd1dcc23a75a9382 (patch) | |
tree | a9dbba9da26aa376a966ed2b4ed77f8822ec35cd /python/test/Ice/timeout/AllTests.py | |
parent | Test was launching wrong icebox with GCC 6 (diff) | |
download | ice-6cf8d1219c6bd00b025bbcc6fd1dcc23a75a9382.tar.bz2 ice-6cf8d1219c6bd00b025bbcc6fd1dcc23a75a9382.tar.xz ice-6cf8d1219c6bd00b025bbcc6fd1dcc23a75a9382.zip |
Fixed for timeout bugs (ICE-7358, ICE-7243, Ice-7227)
Diffstat (limited to 'python/test/Ice/timeout/AllTests.py')
-rw-r--r-- | python/test/Ice/timeout/AllTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/timeout/AllTests.py b/python/test/Ice/timeout/AllTests.py index ea5e685dafe..fd90bdad679 100644 --- a/python/test/Ice/timeout/AllTests.py +++ b/python/test/Ice/timeout/AllTests.py @@ -248,10 +248,10 @@ def allTests(communicator): initData.properties.setProperty("Ice.Override.CloseTimeout", "100") comm = Ice.initialize(initData) connection = comm.stringToProxy(sref).ice_getConnection(); - timeout.holdAdapter(500); + timeout.holdAdapter(800); now = time.clock(); comm.destroy(); - test((time.clock() - now) < 0.4); + test((time.clock() - now) < 0.7); print("ok") |