[Xfce4-commits] <midori:master> Unset locale during tests to avoid i18n-related false failures
Christian Dywan
noreply at xfce.org
Sat Dec 8 03:32:04 CET 2012
Updating branch refs/heads/master
to 9028f5c1a399fc4adf9ace0ee0f8209e343f4352 (commit)
from 522dbd2ad327b54f1008f26f0d1b3afad71a2207 (commit)
commit 9028f5c1a399fc4adf9ace0ee0f8209e343f4352
Author: Christian Dywan <christian at twotoasts.de>
Date: Sat Dec 8 02:13:46 2012 +0100
Unset locale during tests to avoid i18n-related false failures
wscript | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/wscript b/wscript
index 1fd254b..dee3705 100644
--- a/wscript
+++ b/wscript
@@ -576,6 +576,8 @@ def shutdown ():
for x in ['XDG_CONFIG_HOME', 'XDG_CACHE_HOME', 'XDG_DATA_HOME', 'TMPDIR']:
os.environ[x] = (base % x).lower ()
Utils.check_dir (os.environ[x])
+ # Avoid i18n-related false failures
+ os.environ['LC_ALL'] = 'C'
test = UnitTest.unit_test ()
if True:
More information about the Xfce4-commits
mailing list