summaryrefslogtreecommitdiff
path: root/scripts/tests/Ice/retry.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/tests/Ice/retry.py')
-rw-r--r--scripts/tests/Ice/retry.py7
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)