diff options
Diffstat (limited to 'scripts/tests/Ice/metrics.py')
-rw-r--r-- | scripts/tests/Ice/metrics.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/tests/Ice/metrics.py b/scripts/tests/Ice/metrics.py index d2ece8de332..35b3634f074 100644 --- a/scripts/tests/Ice/metrics.py +++ b/scripts/tests/Ice/metrics.py @@ -14,8 +14,14 @@ traceProps = { "Ice.Trace.Retry" : 1, "Ice.Trace.Protocol" : 1 } +testcases = [ + ClientServerTestCase(traceProps=traceProps), +] +if Mapping.getByPath(__name__).hasSource("Ice/metrics", "serveramd"): + testcases += [ ClientAMDServerTestCase(traceProps=traceProps) ] +if Mapping.getByPath(__name__).hasSource("Ice/metrics", "collocated"): + testcases += [ CollocatedTestCase(traceProps=traceProps) ] -TestSuite(__name__, - [ClientServerTestCase(traceProps=traceProps)], +TestSuite(__name__, testcases, options = { "ipv6" : [False], "compress": [False], "protocol" : ["tcp", "ssl"] }, multihost=False) |