diff options
Diffstat (limited to 'scripts/tests/Ice/ami.py')
-rw-r--r-- | scripts/tests/Ice/ami.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/scripts/tests/Ice/ami.py b/scripts/tests/Ice/ami.py index c89436f0da9..d886932a7c7 100644 --- a/scripts/tests/Ice/ami.py +++ b/scripts/tests/Ice/ami.py @@ -15,9 +15,10 @@ traceProps = { "Ice.Trace.Protocol" : 1 } -TestSuite(__name__, - [ - ClientServerTestCase(traceProps=traceProps), - CollocatedTestCase() - ], +testcases = [ ClientServerTestCase(traceProps=traceProps) ] + +if Mapping.getByPath(__name__).hasSource("Ice/ami", "collocated"): + testcases += [ CollocatedTestCase() ] + +TestSuite(__name__, testcases, options = { "compress" : [False], "serialize" : [False] }) |