From 1597a75419cd8049252cfbca6fce6ae95ef8b2c7 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Thu, 23 Mar 2017 15:29:25 +0100 Subject: Fix for ICE-7125 - Added support for Ice.ClassGraphDepthMax --- scripts/LocalDriver.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'scripts/LocalDriver.py') diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index 8a6e4915c4b..71f8d4a4791 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -458,15 +458,16 @@ class LocalDriver(Driver): if self.allCross and cross == current.testcase.getMapping(): continue - # If the given mapping doesn't support server-side, skip this mapping. - if cross and cross != cross.getServerMapping(): - continue - - # Skip if the mapping doesn't provide the test case. + # Skip if the mapping doesn't provide the test case server = current.testcase.getServerTestCase(cross) if not server: continue + if cross and server.getMapping() != cross: + if not self.allCross: + current.writeln("skipped, no server available for `{0}' mapping".format(cross)) + continue + current.writeln("[ running {0} test ]".format(current.testcase)) if not self.all: current.config = current.config.cloneRunnable(current) -- cgit v1.2.3