blob: 03ad594bf13e809feb0fcf26c527650173121502 [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_tests',
'recipe_engine/path',
'recipe_engine/properties',
'recipe_engine/python',
]
def RunSteps(api):
bot_config = api.chromium_tests.create_bot_config_object(
[api.chromium_tests.create_bot_id(
api.properties['mastername'], api.properties['buildername'])],
builders=api.properties['builders'])
api.chromium_tests.configure_build(bot_config)
api.python(
'sample script',
api.path['checkout'].join('testing', 'scripts', 'example.py'),
api.chromium_tests.get_common_args_for_scripts(bot_config))
def GenTests(api):
yield (
api.test('basic') +
api.properties.generic(
mastername='chromium.perf',
buildername='linux-perf',
builders=api.chromium_tests.builders)
)