blob: 89c1e4e829a4a9f82542ec756067774d488f3065 [file] [log] [blame]
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
'chromium',
'chromium_tests',
'recipe_engine/properties',
]
def RunSteps(api):
bot_config_object = api.chromium_tests.create_bot_config_object(
api.properties['mastername'], api.properties['buildername'])
api.chromium_tests.configure_build(bot_config_object)
api.chromium_tests.prepare_checkout(bot_config_object)
def GenTests(api):
yield (
api.test('basic') +
api.properties.generic(
mastername='chromium.linux',
buildername='Linux Builder')
)
yield (
api.test('disable_tests') +
api.properties.generic(
mastername='chromium.lkgr',
buildername='Win ASan Release')
)