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

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

Issue 323383004: [chromedriver] Fix waiting and downloading snapshot builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nit. Created 6 years, 6 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/archive.py ('k') | chrome/test/chromedriver/test/run_all_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/run_buildbot_steps.py
diff --git a/chrome/test/chromedriver/run_buildbot_steps.py b/chrome/test/chromedriver/run_buildbot_steps.py
index e608e534cc3f6d54ebbc84477d0c3cf5ccec4395..c471dbcf28d486ece975dc4750cf9a53b149aadf 100755
--- a/chrome/test/chromedriver/run_buildbot_steps.py
+++ b/chrome/test/chromedriver/run_buildbot_steps.py
@@ -383,10 +383,7 @@ def _CleanTmpDir():
def _WaitForLatestSnapshot(revision):
util.MarkBuildStepStart('wait_for_snapshot')
while True:
- download_site = archive.Site.BLINK_SNAPSHOT
- if util.IsLinux() and platform.architecture()[0] == '32bit':
- download_site = archive.Site.CHROMIUM_SNAPSHOT
- snapshot_revision = archive.GetLatestRevision(download_site)
+ snapshot_revision = archive.GetLatestSnapshotVersion()
if int(snapshot_revision) >= int(revision):
break
util.PrintAndFlush('Waiting for snapshot >= %s, found %s' %
« no previous file with comments | « chrome/test/chromedriver/archive.py ('k') | chrome/test/chromedriver/test/run_all_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698