summaryrefslogtreecommitdiff
path: root/scripts/tests/Ice/retry.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2018-02-20 15:47:18 +0100
committerBenoit Foucher <benoit@zeroc.com>2018-02-20 15:47:18 +0100
commit7ee8b90bd11a36271384fe53034ca8a3b5204a4f (patch)
treeb6f6dd2f081a58bce3632d08b871d28f8305f468 /scripts/tests/Ice/retry.py
parentBuild C++11 image in second build stage on Travis (diff)
downloadice-7ee8b90bd11a36271384fe53034ca8a3b5204a4f.tar.bz2
ice-7ee8b90bd11a36271384fe53034ca8a3b5204a4f.tar.xz
ice-7ee8b90bd11a36271384fe53034ca8a3b5204a4f.zip
Added tracing to Ice/retry test to investigate potential failures (ICE-8555)
Diffstat (limited to 'scripts/tests/Ice/retry.py')
-rw-r--r--scripts/tests/Ice/retry.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/tests/Ice/retry.py b/scripts/tests/Ice/retry.py
new file mode 100644
index 00000000000..aa0142b810b
--- /dev/null
+++ b/scripts/tests/Ice/retry.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+# **********************************************************************
+#
+# Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
+#
+# This copy of Ice is licensed to you under the terms described in the
+# ICE_LICENSE file included in this distribution.
+#
+# **********************************************************************
+
+# 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)])