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

Unified Diff: scripts/slave/v8/v8testing.py

Issue 23691069: V8 Buildbot: Make testing i18n the default. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Deactivate i18n for nacl. Created 7 years, 3 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 | « scripts/master/factory/v8_factory.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/v8/v8testing.py
diff --git a/scripts/slave/v8/v8testing.py b/scripts/slave/v8/v8testing.py
index 9855818c9eae8e3eed6c77350e5424014480fc38..59a6c759c4cd0738160df21e217f6d48accc3d2d 100755
--- a/scripts/slave/v8/v8testing.py
+++ b/scripts/slave/v8/v8testing.py
@@ -65,6 +65,9 @@ def main():
option_parser.add_option('--no-presubmit',
default=False, action='store_true',
help='Skip presubmit checks')
+ option_parser.add_option("--no-i18n", "--noi18n",
+ default=False, action='store_true',
+ help='Skip internationalization tests')
option_parser.add_option('--flaky-tests',
help=('Regard tests marked as flaky '
'(run|skip|dontcare)'))
@@ -87,6 +90,8 @@ def main():
cmd.extend(['--buildbot'])
if options.no_presubmit:
cmd.extend(['--no-presubmit'])
+ if options.no_i18n:
+ cmd.extend(['--no-i18n'])
if options.testname:
cmd.extend([options.testname])
if options.testname == 'test262':
« no previous file with comments | « scripts/master/factory/v8_factory.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698