diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-07-10 17:02:20 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-07-10 17:02:20 +0200 |
commit | ce9b9a9b56d433b9274fdf25bc924825e529f2dd (patch) | |
tree | 1936ad7cdcc8941feb97625b774cc2375836b46a /scripts/Component.py | |
parent | Allow oneway/batch proxies to use IceStorm retryCount, fixes #164 (diff) | |
download | ice-ce9b9a9b56d433b9274fdf25bc924825e529f2dd.tar.bz2 ice-ce9b9a9b56d433b9274fdf25bc924825e529f2dd.tar.xz ice-ce9b9a9b56d433b9274fdf25bc924825e529f2dd.zip |
Minor test driver fixes
Diffstat (limited to 'scripts/Component.py')
-rw-r--r-- | scripts/Component.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/Component.py b/scripts/Component.py index ea9d5a4bfcd..82ed6fab8f6 100644 --- a/scripts/Component.py +++ b/scripts/Component.py @@ -118,7 +118,7 @@ class Ice(Component): # if parent in ["Glacier2", "IceStorm", "IceGrid"]: return False - elif isinstance(platform, Linux): + elif isinstance(platform, Windows): # # On Windows, if testing with a binary distribution, don't test Glacier2/IceBridge services # with the Debug configurations since we don't provide binaries for them. @@ -143,7 +143,6 @@ class Ice(Component): if current.config.ipv6 and testId in ["Ice/udp"]: return False - # IceSSL test doesn't work on macOS/.NET Core if isinstance(mapping, CSharpMapping) and isinstance(platform, Darwin) and parent in ["IceSSL"]: return False |