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

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

Issue 230473004: V8 Buildbot: Add the ability to disable tests in nosnap mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 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 | « scripts/slave/recipes/v8.expected/full_client_v8_V8_Win32___nosnap___shared.json ('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 2d8089db53044c4ac3c8909ad1df2fd08e22070a..e248b76c4d4a3b038190193c162fd5630f0b7ab8 100755
--- a/scripts/slave/v8/v8testing.py
+++ b/scripts/slave/v8/v8testing.py
@@ -71,6 +71,9 @@ def main():
option_parser.add_option("--no-i18n", "--noi18n",
default=False, action='store_true',
help='Skip internationalization tests')
+ option_parser.add_option("--no-snap", "--nosnap",
+ default=False, action="store_true",
+ help='Test a build compiled without snapshot.')
option_parser.add_option("--no-variants",
default=False, action='store_true',
help='Skip testing variants')
@@ -112,6 +115,8 @@ def main():
cmd.extend(['--no-presubmit'])
if options.no_i18n:
cmd.extend(['--no-i18n'])
+ if options.no_snap:
+ cmd.extend(['--no-snap'])
if options.no_variants:
cmd.extend(['--no-variants'])
if 'benchmarks' in options.testname:
« no previous file with comments | « scripts/slave/recipes/v8.expected/full_client_v8_V8_Win32___nosnap___shared.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698