blob: b9b90f287dc643e50fae8bc5fd12e113bf1dfd33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- cpp/test/Slice/unicodePaths/test.py.orig 2022-01-15 23:22:20 UTC
+++ cpp/test/Slice/unicodePaths/test.py
@@ -9,7 +9,7 @@ class SliceUnicodePathsTestCase(ClientTestCase):
def runClientSide(self, current):
- if isinstance(platform, Linux) or isinstance(platform, AIX):
+ if isinstance(platform, Linux) or isinstance(platform, AIX) or isinstance(platform, FreeBSD):
encoding = locale.getdefaultlocale()[1]
if encoding != "UTF-8":
current.writeln("Please set LC_ALL to xx_xx.UTF-8, for example FR_FR.UTF-8")
|