summaryrefslogtreecommitdiff
path: root/python/test/Slice/unicodePaths
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-09-28 21:29:51 +0200
committerJose <jose@zeroc.com>2016-09-28 21:29:51 +0200
commit551177ba4f528a9070830218a0b0a6341d0fc7a4 (patch)
tree52551bb7b4879c0d96d2a18a6b499a2a905d499c /python/test/Slice/unicodePaths
parentAdditional fix for ICE-7386 (diff)
downloadice-551177ba4f528a9070830218a0b0a6341d0fc7a4.tar.bz2
ice-551177ba4f528a9070830218a0b0a6341d0fc7a4.tar.xz
ice-551177ba4f528a9070830218a0b0a6341d0fc7a4.zip
check UTF-8 locale is used with unicodePaths test
Diffstat (limited to 'python/test/Slice/unicodePaths')
-rw-r--r--python/test/Slice/unicodePaths/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Slice/unicodePaths/run.py b/python/test/Slice/unicodePaths/run.py
index a59059e6c9a..23ee198b748 100644
--- a/python/test/Slice/unicodePaths/run.py
+++ b/python/test/Slice/unicodePaths/run.py
@@ -26,7 +26,7 @@ def test(b):
print("failed!")
sys.exit(1)
-if TestUtil.isAIX():
+if TestUtil.isAIX() or TestUtil.isLinux():
encoding = locale.getdefaultlocale()[1]
if encoding != "UTF-8":
print("Please set LC_ALL to xx_xx.UTF-8, for example FR_FR.UTF-8")