summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2018-03-30 16:02:51 +0200
committerBenoit Foucher <benoit@zeroc.com>2018-03-30 16:02:51 +0200
commitc77e405b5e41424d6698902f550ed0864e3744ce (patch)
tree7f06bf93e73b97d8881f25c9cf0bc7de31d7dda4
parentFix to ensure that object adapter creation fails on iOS if port already in use (diff)
downloadice-c77e405b5e41424d6698902f550ed0864e3744ce.tar.bz2
ice-c77e405b5e41424d6698902f550ed0864e3744ce.tar.xz
ice-c77e405b5e41424d6698902f550ed0864e3744ce.zip
Added tracing to location test to investigate sporadic .NET Core failures
-rw-r--r--scripts/tests/Ice/location.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/tests/Ice/location.py b/scripts/tests/Ice/location.py
new file mode 100644
index 00000000000..320ad8e2748
--- /dev/null
+++ b/scripts/tests/Ice/location.py
@@ -0,0 +1,17 @@
+# -*- 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.Locator" : 2,
+ "Ice.Trace.Protocol" : 1
+}
+
+TestSuite(__name__, [ClientServerTestCase(traceProps=traceProps)])