summaryrefslogtreecommitdiff
path: root/scripts/tests
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2018-02-21 15:50:21 +0100
committerBenoit Foucher <benoit@zeroc.com>2018-02-21 15:50:21 +0100
commitba0c589263e612130ccd8ebdee4ddbbbe7f28a2e (patch)
tree60d04a917cc574fc2eed144c0572bd3e9207558e /scripts/tests
parentFixed python Ice/acm test to wait for connection closure like other mappings ... (diff)
downloadice-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.py14
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] })