Commit e548913a authored by samuong's avatar samuong Committed by Commit bot

[chromedriver] Remove M34 and add M37 to test suite

BUG=
TBR=stgao@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#295911}
parent e3134c1b
...@@ -10,9 +10,9 @@ import urllib ...@@ -10,9 +10,9 @@ import urllib
import util import util
CHROME_34_REVISION = '251854'
CHROME_35_REVISION = '260135' CHROME_35_REVISION = '260135'
CHROME_36_REVISION = '269696' CHROME_36_REVISION = '269696'
CHROME_37_REVISION = '278933'
_SITE = 'http://commondatastorage.googleapis.com' _SITE = 'http://commondatastorage.googleapis.com'
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
namespace { namespace {
// This variable must be able to be found and parsed by the upload script. // This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {34, 0, 1847, 0}; const int kMinimumSupportedChromeVersion[] = {35, 0, 1916, 0};
} // namespace } // namespace
......
...@@ -191,9 +191,9 @@ def main(): ...@@ -191,9 +191,9 @@ def main():
latest_snapshot_revision = archive.GetLatestSnapshotVersion() latest_snapshot_revision = archive.GetLatestSnapshotVersion()
versions = [ versions = [
['HEAD', latest_snapshot_revision], ['HEAD', latest_snapshot_revision],
['37', archive.CHROME_37_REVISION],
['36', archive.CHROME_36_REVISION], ['36', archive.CHROME_36_REVISION],
['35', archive.CHROME_35_REVISION], ['35', archive.CHROME_35_REVISION]
['34', archive.CHROME_34_REVISION]
] ]
code = 0 code = 0
for version in versions: 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