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

Unified Diff: tools/run-tests.py

Issue 2227613002: [test] Deprecate test data download for most test suites (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/testcfg.py ('k') | tools/testrunner/local/testsuite.py » ('j') | 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 2fdbd9d89e811966d3b8bb4976f6a7e2a335955b..e982cdc5050bfbc808ac58374775dcfdd7c5f706 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -252,7 +252,7 @@ def BuildOptions():
result.add_option("--download-data", help="Download missing test suite data",
default=False, action="store_true")
result.add_option("--download-data-only",
- help="Download missing test suite data and exit",
+ help="Deprecated",
default=False, action="store_true")
result.add_option("--extra-flags",
help="Additional flags to pass to each test command",
@@ -667,6 +667,9 @@ def Main():
if options.download_data_only:
return exit_code
+ for s in suites:
+ s.PrepareSources()
+
for (arch, mode) in options.arch_and_mode:
try:
code = Execute(arch, mode, args, options, suites)
« no previous file with comments | « test/test262/testcfg.py ('k') | tools/testrunner/local/testsuite.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698