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

Unified Diff: chrome/test/chromedriver/test/run_all_tests.py

Issue 1907993003: [chromedriver] Use snapshot instead of continuous archive, drop M48 and add M51. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove BLINK_SNAPSHOT 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 | « chrome/test/chromedriver/chrome/version.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/test/run_all_tests.py
diff --git a/chrome/test/chromedriver/test/run_all_tests.py b/chrome/test/chromedriver/test/run_all_tests.py
index c40ad8651304edff1fa1ee2296f581e807a5f51c..9bb92768e4092c6e09bd1d2717e2ef483fc81c4d 100755
--- a/chrome/test/chromedriver/test/run_all_tests.py
+++ b/chrome/test/chromedriver/test/run_all_tests.py
@@ -191,15 +191,15 @@ def main():
latest_snapshot_revision = archive.GetLatestSnapshotVersion()
versions = [
['HEAD', latest_snapshot_revision],
+ ['51', archive.CHROME_51_REVISION],
['50', archive.CHROME_50_REVISION],
['49', archive.CHROME_49_REVISION],
- ['48', archive.CHROME_48_REVISION],
]
code = 0
for version in versions:
if options.chrome_version and version[0] != options.chrome_version:
continue
- download_site = archive.Site.CONTINUOUS
+ download_site = archive.Site.CHROMIUM_SNAPSHOT
version_name = version[0]
if version_name == 'HEAD':
version_name = version[1]
« no previous file with comments | « chrome/test/chromedriver/chrome/version.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698