diff options
Diffstat (limited to 'scripts/tests')
-rw-r--r-- | scripts/tests/Ice/ami.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/tests/Ice/ami.py b/scripts/tests/Ice/ami.py index 82ccca1a08a..c89436f0da9 100644 --- a/scripts/tests/Ice/ami.py +++ b/scripts/tests/Ice/ami.py @@ -8,4 +8,16 @@ # # ********************************************************************** -TestSuite(__name__, options = { "compress" : [False], "serialize" : [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), + CollocatedTestCase() + ], + options = { "compress" : [False], "serialize" : [False] }) |