diff options
author | Jose <jose@zeroc.com> | 2017-03-24 12:33:33 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-24 12:33:33 +0100 |
commit | cdd283db257b308dd2a07171f5d2eb5e9672bc3e (patch) | |
tree | c4791dc0c68cae3fd5e417f723d5546c8c554758 /scripts/Util.py | |
parent | ICE-7680: replace Thread by Runnable (diff) | |
download | ice-cdd283db257b308dd2a07171f5d2eb5e9672bc3e.tar.bz2 ice-cdd283db257b308dd2a07171f5d2eb5e9672bc3e.tar.xz ice-cdd283db257b308dd2a07171f5d2eb5e9672bc3e.zip |
Fix (ICE-7498) - Port more test to UWP
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index b0f1dedb370..9f16bd09d2e 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -221,23 +221,14 @@ class Windows(Platform): if config.uwp: return (["Ice/.*", "IceSSL/configuration"], ["Ice/background", - "Ice/checksum", - "Ice/custom", - "Ice/defaultServant", - "Ice/defaultValue", + "Ice/echo", "Ice/faultTolerance", "Ice/gc", - "Ice/interceptor", "Ice/library", "Ice/logger", - "Ice/networkProxy", - "Ice/properties", + "Ice/networkProxy", # SOCKS proxy not supported with UWP + "Ice/properties", # Property files are not supported with UWP "Ice/plugin", - "Ice/stringConverter", - "Ice/servantLocator", - "Ice/services", - "Ice/slicing/exceptions", - "Ice/slicing/objects", "Ice/threadPoolPriority"]) return Platform.getFilters(self, config) @@ -258,8 +249,10 @@ class Windows(Platform): return "v110" elif out.find("Version 18.") != -1: return "v120" - elif out.find("Version 19.") != -1: + elif out.find("Version 19.00.") != -1: return "v140" + elif out.find("Version 19.10.") != -1: + return "v141" def getBinSubDir(self, mapping, process, current): # |