diff options
author | Jose <jose@zeroc.com> | 2019-06-21 12:00:52 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-06-21 12:00:52 +0200 |
commit | b1df13c8e3ca5b1c58c1951642cd0e76e6ccff23 (patch) | |
tree | b949a995701c161ca7ee72c1a273d526a26f6ca3 /scripts/tests | |
parent | Test cleanup, close #377 (diff) | |
download | ice-b1df13c8e3ca5b1c58c1951642cd0e76e6ccff23.tar.bz2 ice-b1df13c8e3ca5b1c58c1951642cd0e76e6ccff23.tar.xz ice-b1df13c8e3ca5b1c58c1951642cd0e76e6ccff23.zip |
Collocated test not run by tests/Ice/retry.py - Close #404
Diffstat (limited to 'scripts/tests')
-rw-r--r-- | scripts/tests/Ice/retry.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/tests/Ice/retry.py b/scripts/tests/Ice/retry.py index ff589037696..b245f40f459 100644 --- a/scripts/tests/Ice/retry.py +++ b/scripts/tests/Ice/retry.py @@ -10,4 +10,9 @@ traceProps = { "Ice.Trace.Protocol" : 1 } -TestSuite(__name__, [ClientServerTestCase(traceProps=traceProps)]) +testcases = [ClientServerTestCase(traceProps=traceProps)] + +if Mapping.getByPath(__name__).hasSource("Ice/metrics", "collocated"): + testcases += [ CollocatedTestCase(traceProps=traceProps) ] + +TestSuite(__name__, testcases) |