blob: 0208ad03237c0f69ee9bf488ebe18a8f705896b7 [file] [log] [blame]
Kalin Stoyanov0d1de1c2014-12-10 17:00:53 -08001# Copyright (c) 2014 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 = "Chrome OS Team"
6NAME = "kernel_usb_set1"
7PURPOSE = "USB peripherals detection."
8CRITERIA = "All tests with SUITE=kernel_usb_set should pass."
9
10TIME = "LONG"
11TEST_CATEGORY = "Functional"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
16This is the kernel_usb test suite.
17
18This suite is meant to cover boards on different platform/architecture
19family. E2E USB detection tests will be exercizing in stress scenarios.
20Consistent failure to detect peripherals will indicate kernel
21regression.
22Consistent failure to restart, suspend or resume the device will indicate power
23regression.
24Consistent crash failure will indicate regression on processes or kernel.
25
26
27@param build: The name of the image to test.
28 Ex: x86-mario-release/R17-1412.33.0-a1-b29
29@param board: The board to test on. Ex: x86-mario
30@param pool: The pool of machines to utilize for scheduling. If pool=None
31 board is used.
32@param check_hosts: require appropriate live hosts to exist in the lab.
33@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
34"""
35
36import common
37from autotest_lib.server.cros import provision
38from autotest_lib.server.cros.dynamic_suite import dynamic_suite
39
40_BUG_TEMPLATE = {
41 'labels': ['OS-Chrome', 'Cr-OS-Kernel', 'KernelUsbSet1-Bug'],
42 'owner': 'kalin@chromium.org',
43}
44
45
Shuqian Zhao24785cc2015-06-01 16:32:18 -070046args_dict['add_experimental'] = True
47args_dict['bug_template'] = _BUG_TEMPLATE
48args_dict['name'] = 'kernel_usb_set1'
49args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX
50args_dict['job'] = job
51
52dynamic_suite.reimage_and_run(**args_dict)