diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-02-21 15:50:21 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-02-21 15:50:21 +0100 |
commit | ba0c589263e612130ccd8ebdee4ddbbbe7f28a2e (patch) | |
tree | 60d04a917cc574fc2eed144c0572bd3e9207558e /scripts/tests | |
parent | Fixed python Ice/acm test to wait for connection closure like other mappings ... (diff) | |
download | ice-ba0c589263e612130ccd8ebdee4ddbbbe7f28a2e.tar.bz2 ice-ba0c589263e612130ccd8ebdee4ddbbbe7f28a2e.tar.xz ice-ba0c589263e612130ccd8ebdee4ddbbbe7f28a2e.zip |
Android fixes
- Improved emulator support (no need to specify the AVD name anymore)
- Fixed adapterDeactivation test issue with Android
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] }) |