blob: 332dbf6e52687702530ad3aefd3cdfbca84d8a65 [file] [log] [blame]
Dennis Wueb34b352017-10-10 16:34:12 -07001# Copyright (c) 2017 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5AUTHOR = "denniswu@chromium.org"
6NAME = "bluestreak-partners"
7PURPOSE = "Automated testing of bluestreak/cfm used by third party vendors/testers"
8
9TIME = "LONG"
10TEST_CATEGORY = "Functional"
11TEST_CLASS = "suite"
12TEST_TYPE = "server"
13
14DOC = """
15This suite runs a set of bluestreak/cfm tests on bluestreak kits at third party vendors/testers sites using Moblab.
16"""
17
18import common
Dennis Wueb34b352017-10-10 16:34:12 -070019from autotest_lib.server.cros.dynamic_suite import dynamic_suite
20
21# Values specified in this bug template will override default values when
22# filing bugs on tests that are a part of this suite. If left unspecified
23# the bug filer will fallback to it's defaults.
24
25
26args_dict['name'] = NAME
27args_dict['add_experimental'] = True
28args_dict['bug_template'] = _BUG_TEMPLATE
Dennis Wueb34b352017-10-10 16:34:12 -070029args_dict['job'] = job
30
31dynamic_suite.reimage_and_run(**args_dict)