summaryrefslogtreecommitdiffstats
path: root/chrome/test/chromedriver
diff options
context:
space:
mode:
authorgmanikpure <gmanikpure@chromium.org>2016-03-17 13:16:09 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-17 20:17:20 +0000
commit9d74e771fce6cace39eb0ad7243036b857af483e (patch)
tree7792e893565859cb4e37cd2b57a9f7dab6ff172a /chrome/test/chromedriver
parentc0e3792f832fc454324dbe35d01079b124b072cd (diff)
downloadchromium_src-9d74e771fce6cace39eb0ad7243036b857af483e.zip
chromium_src-9d74e771fce6cace39eb0ad7243036b857af483e.tar.gz
chromium_src-9d74e771fce6cace39eb0ad7243036b857af483e.tar.bz2
[Chromedriver] Drop support for M47 and add M50.
BUG= Review URL: https://codereview.chromium.org/1813813003 Cr-Commit-Position: refs/heads/master@{#381784}
Diffstat (limited to 'chrome/test/chromedriver')
-rw-r--r--chrome/test/chromedriver/archive.py2
-rw-r--r--chrome/test/chromedriver/chrome/version.cc2
-rwxr-xr-xchrome/test/chromedriver/test/run_all_tests.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/chrome/test/chromedriver/archive.py b/chrome/test/chromedriver/archive.py
index 46966c2..e878e64 100644
--- a/chrome/test/chromedriver/archive.py
+++ b/chrome/test/chromedriver/archive.py
@@ -10,9 +10,9 @@ import urllib
import util
-CHROME_47_REVISION = '352825'
CHROME_48_REVISION = '359663'
CHROME_49_REVISION = '369874'
+CHROME_50_REVISION = '377898'
_SITE = 'http://commondatastorage.googleapis.com'
diff --git a/chrome/test/chromedriver/chrome/version.cc b/chrome/test/chromedriver/chrome/version.cc
index 0a6a5b8..1cc0904 100644
--- a/chrome/test/chromedriver/chrome/version.cc
+++ b/chrome/test/chromedriver/chrome/version.cc
@@ -9,7 +9,7 @@
namespace {
// This variable must be able to be found and parsed by the upload script.
-const int kMinimumSupportedChromeVersion[] = {47, 0, 2526, 0};
+const int kMinimumSupportedChromeVersion[] = {48, 0, 2564, 0};
} // namespace
diff --git a/chrome/test/chromedriver/test/run_all_tests.py b/chrome/test/chromedriver/test/run_all_tests.py
index 228d1e5..34a8c7c 100755
--- a/chrome/test/chromedriver/test/run_all_tests.py
+++ b/chrome/test/chromedriver/test/run_all_tests.py
@@ -191,9 +191,9 @@ def main():
latest_snapshot_revision = archive.GetLatestSnapshotVersion()
versions = [
['HEAD', latest_snapshot_revision],
+ ['50', archive.CHROME_50_REVISION],
['49', archive.CHROME_49_REVISION],
['48', archive.CHROME_48_REVISION],
- ['47', archive.CHROME_47_REVISION],
]
code = 0
for version in versions: