diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-03-30 16:02:51 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-03-30 16:02:51 +0200 |
commit | c77e405b5e41424d6698902f550ed0864e3744ce (patch) | |
tree | 7f06bf93e73b97d8881f25c9cf0bc7de31d7dda4 /scripts/tests | |
parent | Fix to ensure that object adapter creation fails on iOS if port already in use (diff) | |
download | ice-c77e405b5e41424d6698902f550ed0864e3744ce.tar.bz2 ice-c77e405b5e41424d6698902f550ed0864e3744ce.tar.xz ice-c77e405b5e41424d6698902f550ed0864e3744ce.zip |
Added tracing to location test to investigate sporadic .NET Core failures
Diffstat (limited to 'scripts/tests')
-rw-r--r-- | scripts/tests/Ice/location.py | 17 |
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)]) |