Skip to content

Commit

Permalink
[chromedirver] Add 33 to test suite and remove 30.
Browse files Browse the repository at this point in the history
Also update OWNERS and WATCHLISTS file for my account change.

BUG=None

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246811 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
stgao@chromium.org committed Jan 24, 2014
1 parent ba7739e commit a5320b4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion WATCHLISTS
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@
'cc': ['cc-bugs@chromium.org'],
'chrome_elf': ['caitkp+watch@chromium.org',],
'chrome_views': ['tfarina@chromium.org'],
'chromedriver': ['chrisgao@chromium.org', 'frankf@chromium.org'],
'chromedriver': ['frankf@chromium.org', 'stgao@chromium.org'],
'chromeos' : ['oshima+watch@chromium.org',
'stevenjb+watch@chromium.org'],
'chromeos_attestation' : ['dkrahn+watch@chromium.org'],
Expand Down
2 changes: 1 addition & 1 deletion chrome/test/chromedriver/OWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
chrisgao@chromium.org
craigdh@chromium.org
frankf@chromium.org
stgao@chromium.org
2 changes: 1 addition & 1 deletion chrome/test/chromedriver/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

import util

CHROME_30_REVISION = '217281'
CHROME_31_REVISION = '225096'
CHROME_32_REVISION = '232870'
CHROME_33_REVISION = '241075'

_SITE = 'http://commondatastorage.googleapis.com'

Expand Down
2 changes: 1 addition & 1 deletion chrome/test/chromedriver/chrome/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace {

// This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {30, 0, 1573, 2};
const int kMinimumSupportedChromeVersion[] = {31, 0, 1650, 59};

} // namespace

Expand Down
3 changes: 1 addition & 2 deletions chrome/test/chromedriver/chrome_launcher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,11 @@ Status PrepareCommandLine(int port,
CommandLine command(program);
Switches switches;

// TODO(chrisgao): Add "disable-sync" when chrome 30- is not supported.
// For chrome 30-, it leads to crash when opening chrome://settings.
for (size_t i = 0; i < arraysize(kCommonSwitches); ++i)
switches.SetSwitch(kCommonSwitches[i]);
switches.SetSwitch("disable-hang-monitor");
switches.SetSwitch("disable-prompt-on-repost");
switches.SetSwitch("disable-sync");
switches.SetSwitch("full-memory-crash-report");
switches.SetSwitch("no-first-run");
switches.SetSwitch("disable-background-networking");
Expand Down
4 changes: 2 additions & 2 deletions chrome/test/chromedriver/test/run_all_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ def main():
latest_snapshot_revision = archive.GetLatestRevision(archive.Site.SNAPSHOT)
versions = [
['HEAD', latest_snapshot_revision],
['33', archive.CHROME_33_REVISION],
['32', archive.CHROME_32_REVISION],
['31', archive.CHROME_31_REVISION],
['30', archive.CHROME_30_REVISION]
['31', archive.CHROME_31_REVISION]
]
code = 0
for version in versions:
Expand Down
3 changes: 0 additions & 3 deletions chrome/test/chromedriver/test/test_expectations
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ _REVISION_NEGATIVE_FILTER['HEAD'] = [
_REVISION_NEGATIVE_FILTER['31'] = _REVISION_NEGATIVE_FILTER['HEAD'] + [
'I18nTest.*', # This was fixed in a later version of 31 than we use.
]
_REVISION_NEGATIVE_FILTER['30'] = _REVISION_NEGATIVE_FILTER['HEAD'] + [
'I18nTest.*',
]


_OS_NEGATIVE_FILTER = {}
Expand Down
2 changes: 1 addition & 1 deletion third_party/webdriver/OWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
chrisgao@chromium.org
craigdh@chromium.org
frankf@chromium.org
stgao@chromium.org

0 comments on commit a5320b4

Please sign in to comment.