diff options
author | Jose <jose@zeroc.com> | 2016-09-29 19:12:55 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-09-29 19:12:55 +0200 |
commit | 6a263b11c2ffdca90bb174e294bf9e513bbd71f9 (patch) | |
tree | d38a39752ec1ae46aff030945613c1ca3d87c8b8 /ruby/test | |
parent | Update Java Gradle and Android tools versions (diff) | |
download | ice-6a263b11c2ffdca90bb174e294bf9e513bbd71f9.tar.bz2 ice-6a263b11c2ffdca90bb174e294bf9e513bbd71f9.tar.xz ice-6a263b11c2ffdca90bb174e294bf9e513bbd71f9.zip |
Ruby/Python unicodePaths test fixes for Windows
- Ruby on Windows is build with MINGW which does not support
Windows UNICODE APIs required for this to work.
- Use slice2py.exe with PIP install
Diffstat (limited to 'ruby/test')
-rw-r--r-- | ruby/test/Slice/unicodePaths/run.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ruby/test/Slice/unicodePaths/run.py b/ruby/test/Slice/unicodePaths/run.py index 9805c4ee2e2..3ff0e2838c5 100644 --- a/ruby/test/Slice/unicodePaths/run.py +++ b/ruby/test/Slice/unicodePaths/run.py @@ -33,10 +33,15 @@ if TestUtil.isAIX() or TestUtil.isLinux(): print("Skipping test") sys.exit(0) +if TestUtil.isWin32(): + print("Ruby on Windows is build with MINGW and it doesn't support Windows UNICODE APIs") + print("Skipping test") + sys.exit(0) + if sys.version_info[0] == 2 and TestUtil.isWin32(): print("To run this test on Windows you need to be using Python 3.x") print("Python 2.x subprocess module doesn't support unicode on Windows") - print("Skipping tes") + print("Skipping test") sys.exit(0) if os.environ.get("USE_BIN_DIST", "no") == "yes": |