Reviewers: Michael Achenbach,

Description:
Skip presubmits when doing --download-data-only.

BUG=v8:4124
LOG=N
[email protected]
TEST=None

Please review this at https://codereview.chromium.org/1148093002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+2, -0 lines):
  M tools/run-tests.py


Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index 3186b0b2fc08b13595681f6003a2bff6bd2ef0d8..274bb18ac62227573d98ab705eaacb805705cd36 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -343,6 +343,8 @@ def ProcessOptions(options):
     # Buildbots run presubmit tests as a separate step.
     options.no_presubmit = True
     options.no_network = True
+  if options.download_data_only:
+    options.no_presubmit = True
   if options.command_prefix:
     print("Specifying --command-prefix disables network distribution, "
           "running tests locally.")


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to