diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-10-24 17:20:41 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-10-24 17:20:41 +0200 |
commit | 3626a1bcdc0707b940db1d869359db59b2383074 (patch) | |
tree | 635ef1d94080e7c846efbf3e57468d32c55cff77 /scripts/Component.py | |
parent | Fixes to improve testing speed (diff) | |
download | ice-3626a1bcdc0707b940db1d869359db59b2383074.tar.bz2 ice-3626a1bcdc0707b940db1d869359db59b2383074.tar.xz ice-3626a1bcdc0707b940db1d869359db59b2383074.zip |
Fixed minor testing issues
Diffstat (limited to 'scripts/Component.py')
-rw-r--r-- | scripts/Component.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Component.py b/scripts/Component.py index f6af470aa0b..92ddcc388c3 100644 --- a/scripts/Component.py +++ b/scripts/Component.py @@ -188,7 +188,7 @@ class Ice(Component): if parent not in ["Ice", "IceBox", "IceGrid", "Glacier2", "IceStorm", "IceDiscovery", "IceBridge"]: return None - if isinstance(testcase, CollocatedTestCase): + if not isinstance(testcase, ClientServerTestCase): return None # Define here Ice tests which are slow to execute and for which it's not useful to test different options |