diff options
author | Jose <jose@zeroc.com> | 2017-04-27 13:19:18 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-27 13:19:18 +0200 |
commit | 913b7dda48b0c133721901b83794ee7d3348fa94 (patch) | |
tree | 4d2dfb27bcc50e6e9d530b8a241bb3b1cbc276ff /scripts/Util.py | |
parent | Fixed ICE-6680 - WS transports are now provided by a separate IceWS plugin (diff) | |
download | ice-913b7dda48b0c133721901b83794ee7d3348fa94.tar.bz2 ice-913b7dda48b0c133721901b83794ee7d3348fa94.tar.xz ice-913b7dda48b0c133721901b83794ee7d3348fa94.zip |
Filter out ruby test on Windows
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 8702cc05282..89856d7a51f 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -245,8 +245,9 @@ class Windows(Platform): elif self.getCompiler() in ["v100"]: return (["cpp/Ice/.*", "cpp/IceSSL/.*", "cpp/IceBox/.*", "cpp/IceDiscovery/.*", "cpp/IceUtil/.*", "cpp/Slice/.*"], []) elif self.getCompiler() not in ["v140"]: - return ([], ["python", "php"]) - return Platform.getFilters(self, config) + return ([], ["python", "php", "ruby"]) + else: + return ([], ["ruby"]) def parseBuildVariables(self, variables): pass # Nothing to do, we don't support the make build system on Windows |