diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-07-19 18:01:34 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-07-19 18:01:34 +0200 |
commit | 017299c3f1a07f5639451f4e1d4fb73b984d00a8 (patch) | |
tree | 074636a241b3ec29fda7b2dea6269b7aceaf20a4 /scripts/LocalDriver.py | |
parent | Fixes for cs:namespace metadata directive (diff) | |
download | ice-017299c3f1a07f5639451f4e1d4fb73b984d00a8.tar.bz2 ice-017299c3f1a07f5639451f4e1d4fb73b984d00a8.tar.xz ice-017299c3f1a07f5639451f4e1d4fb73b984d00a8.zip |
Fixed .NET Core multicast support (fixes #29)
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index 813659be5c0..a0b342d5b78 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -533,6 +533,10 @@ class LocalDriver(Driver): if self.allCross and cross == current.testcase.getMapping(): continue + # Skip if the cross test server mapping is another mapping than the cross mapping + if cross != cross.getServerMapping(): + continue + # Skip if the mapping doesn't provide the test case server = current.testcase.getServerTestCase(cross) if not server: |