Dennis Wu | eb34b35 | 2017-10-10 16:34:12 -0700 | [diff] [blame] | 1 | # 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 | |
| 5 | AUTHOR = "denniswu@chromium.org" |
| 6 | NAME = "bluestreak-partners" |
| 7 | PURPOSE = "Automated testing of bluestreak/cfm used by third party vendors/testers" |
| 8 | |
| 9 | TIME = "LONG" |
| 10 | TEST_CATEGORY = "Functional" |
| 11 | TEST_CLASS = "suite" |
| 12 | TEST_TYPE = "server" |
| 13 | |
| 14 | DOC = """ |
| 15 | This suite runs a set of bluestreak/cfm tests on bluestreak kits at third party vendors/testers sites using Moblab. |
| 16 | """ |
| 17 | |
| 18 | import common |
Dennis Wu | eb34b35 | 2017-10-10 16:34:12 -0700 | [diff] [blame] | 19 | from 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 | |
| 26 | args_dict['name'] = NAME |
| 27 | args_dict['add_experimental'] = True |
| 28 | args_dict['bug_template'] = _BUG_TEMPLATE |
Dennis Wu | eb34b35 | 2017-10-10 16:34:12 -0700 | [diff] [blame] | 29 | args_dict['job'] = job |
| 30 | |
| 31 | dynamic_suite.reimage_and_run(**args_dict) |