Commit 2c923538 authored by maruel@chromium.org's avatar maruel@chromium.org

Convert the XXX_sync builders to using directly sync_integration_tests.

TBR=nsylvain@chromium.org
BUG=109517
TEST=sync_integration_tests is properly run.
NOTRY=true

Review URL: http://codereview.chromium.org/9513008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124732 0039d316-1c4b-4281-b951-d872f2087c98
parent 51e403bb
# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['win_sync', 'linux_sync', 'mac_sync'] return [
'linux_rel:sync_integration_tests',
'mac_rel:sync_integration_tests',
'win_rel:sync_integration_tests',
]
# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['win_sync', 'linux_sync', 'mac_sync'] return [
'linux_rel:sync_integration_tests',
'mac_rel:sync_integration_tests',
'win_rel:sync_integration_tests',
]
# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['win_sync', 'linux_sync', 'mac_sync'] return [
'linux_rel:sync_integration_tests',
'mac_rel:sync_integration_tests',
'win_rel:sync_integration_tests',
]
# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,8 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['win_sync', 'linux_sync', 'mac_sync'] return [
'linux_rel:sync_integration_tests',
'mac_rel:sync_integration_tests',
'win_rel:sync_integration_tests',
]
# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
...@@ -9,7 +9,11 @@ for more details on the presubmit API built into gcl. ...@@ -9,7 +9,11 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(project, change): def GetPreferredTrySlaves(project, change):
slaves = ['win_sync', 'linux_sync', 'mac_sync'] slaves = [
'linux_rel:sync_integration_tests',
'mac_rel:sync_integration_tests',
'win_rel:sync_integration_tests',
]
# Changes that touch NSS files will likely need a corresponding OpenSSL edit. # Changes that touch NSS files will likely need a corresponding OpenSSL edit.
# Conveniently, this one glob also matches _openssl.* changes too. # Conveniently, this one glob also matches _openssl.* changes too.
if any('nss' in f.LocalPath() for f in change.AffectedFiles()): if any('nss' in f.LocalPath() for f in change.AffectedFiles()):
......
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