diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-12-28 12:09:42 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-12-28 12:09:42 +0100 |
commit | cf9edaeb9e34d4158bd168b848efe3b7e7f2c4ad (patch) | |
tree | f483cca0457310a97db41053c1c9731e5937d9a1 /scripts/Util.py | |
parent | Removed bogus assert from StreamHelper (diff) | |
download | ice-cf9edaeb9e34d4158bd168b848efe3b7e7f2c4ad.tar.bz2 ice-cf9edaeb9e34d4158bd168b848efe3b7e7f2c4ad.tar.xz ice-cf9edaeb9e34d4158bd168b848efe3b7e7f2c4ad.zip |
Added back Ice.PrintAdapterReady for UWP tests, it's needed for servers running w/ SSL
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index f5db35fec29..3288d3d5129 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2994,7 +2994,7 @@ class Driver: def getProcessProps(self, current, ready, readyCount): props = {} if ready or readyCount > 0: - if not current.config.uwp and current.config.buildPlatform not in ["iphonesimulator", "iphoneos"]: + if current.config.buildPlatform not in ["iphonesimulator", "iphoneos"]: props["Ice.PrintAdapterReady"] = 1 return props |