Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Unified Diff: tools/run-tests.py

Issue 1402373002: [test] Set default locale in test runner (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: English interface in env Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/test262/test262.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index 3336c64b6e124310ad9d3e6b8f3823d488e46c3f..3d143ac6adb5cd11869299bca6d6bb2cd4830e94 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -380,6 +380,10 @@ def BuildbotToV8Mode(config):
def SetupEnvironment(options):
"""Setup additional environment variables."""
+
+ # Many tests assume an English interface.
+ os.environ['LANG'] = 'en_US.UTF-8'
+
symbolizer = 'external_symbolizer_path=%s' % (
os.path.join(
BASE_DIR, 'third_party', 'llvm-build', 'Release+Asserts', 'bin',
« no previous file with comments | « test/test262/test262.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698