diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-07-19 23:52:42 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-07-19 23:52:42 +0200 |
commit | 188f173f7b402f0bcb9df4864571c441b24491f1 (patch) | |
tree | 3818cdfc121083351a4377c56b2c26ebeb8b0224 /scripts/LocalDriver.py | |
parent | Fixed .NET Core multicast support (fixes #29) (diff) | |
download | ice-188f173f7b402f0bcb9df4864571c441b24491f1.tar.bz2 ice-188f173f7b402f0bcb9df4864571c441b24491f1.tar.xz ice-188f173f7b402f0bcb9df4864571c441b24491f1.zip |
Fixed bug in test driver
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index a0b342d5b78..e0f6f2ae306 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -534,7 +534,7 @@ class LocalDriver(Driver): continue # Skip if the cross test server mapping is another mapping than the cross mapping - if cross != cross.getServerMapping(): + if cross and cross != cross.getServerMapping(): continue # Skip if the mapping doesn't provide the test case |