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 /python | |
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 'python')
-rw-r--r-- | python/test/Slice/unicodePaths/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Slice/unicodePaths/run.py b/python/test/Slice/unicodePaths/run.py index 23ee198b748..c6d83009cac 100644 --- a/python/test/Slice/unicodePaths/run.py +++ b/python/test/Slice/unicodePaths/run.py @@ -44,7 +44,7 @@ if os.environ.get("USE_BIN_DIST", "no") == "yes": slice2py = sys.executable + " /usr/local/bin/slice2py" elif TestUtil.isWin32(): pythonHome = os.path.dirname(sys.executable) - slice2py = sys.executable + " " + os.path.join(pythonHome, "Scripts", "slice2py-script.py") + slice2py = os.path.join(pythonHome, "Scripts", "slice2py.exe") elif os.path.isfile(os.path.join(TestUtil.getCppBinDir(), "slice2py")): slice2py = os.path.join(TestUtil.getCppBinDir(), "slice2py") else: |