Commit 61c0a840 authored by kkania@chromium.org's avatar kkania@chromium.org

[chromedriver] Require chrome 28+. Don't test against 27.

BUG=none
R=chrisgao@chromium.org

Review URL: https://codereview.chromium.org/23495016

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220654 0039d316-1c4b-4281-b951-d872f2087c98
parent fb65e864
......@@ -10,9 +10,9 @@ import urllib
import util
CHROME_27_REVISION = '190466'
CHROME_28_REVISION = '198276'
CHROME_29_REVISION = '208261'
CHROME_30_REVISION = '217281'
_SITE = 'http://commondatastorage.googleapis.com'
......
......@@ -9,7 +9,7 @@
namespace {
// This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {27, 0, 1453, 0};
const int kMinimumSupportedChromeVersion[] = {28, 0, 1500, 0};
} // namespace
......
......@@ -179,9 +179,9 @@ def main():
latest_snapshot_revision = archive.GetLatestRevision(archive.Site.SNAPSHOT)
versions = [
['HEAD', latest_snapshot_revision],
['30', archive.CHROME_30_REVISION],
['29', archive.CHROME_29_REVISION],
['28', archive.CHROME_28_REVISION],
['27', archive.CHROME_27_REVISION]
['28', archive.CHROME_28_REVISION]
]
code = 0
for version in versions:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment