diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-07-13 10:43:40 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-07-13 10:43:40 +0200 |
commit | 1899a37743772751b83deb91c477633712305798 (patch) | |
tree | b0a27dfbd6897cf6c8bd1b4295edb7974a001bdc /scripts/tests/Ice/timeout.py | |
parent | Fixed ICE-8282 - added IceIAPObjC library (diff) | |
download | ice-1899a37743772751b83deb91c477633712305798.tar.bz2 ice-1899a37743772751b83deb91c477633712305798.tar.xz ice-1899a37743772751b83deb91c477633712305798.zip |
Fix for ICE-8130 and ICE-8309 - enabled tracing to investigate failures
Diffstat (limited to 'scripts/tests/Ice/timeout.py')
-rw-r--r-- | scripts/tests/Ice/timeout.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/tests/Ice/timeout.py b/scripts/tests/Ice/timeout.py index 6dfd8e83c67..ea7afdb3856 100644 --- a/scripts/tests/Ice/timeout.py +++ b/scripts/tests/Ice/timeout.py @@ -8,4 +8,11 @@ # # ********************************************************************** -TestSuite(__name__, options = { "compress" : [False] }) +# Enable some tracing to allow investigating test failures +traceProps = { + "Ice.Trace.Network" : 2, + "Ice.Trace.Retry" : 1, + "Ice.Trace.Protocol" : 1 +} + +TestSuite(__name__, [ClientServerTestCase(traceProps=traceProps)], options = { "compress" : [False] }, ) |