blob: 6ce86998a720be6ebf2f8e46bb4a6b5649689e23 [file] [log] [blame]
Matt Mallettcbf08f22018-03-14 14:08:09 -07001# Copyright 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 = "Chrome OS Team"
Matt Mallett24faf6a2018-09-05 15:40:28 -07006NAME = "check_setup_cts_N"
Matt Mallettcbf08f22018-03-14 14:08:09 -07007PURPOSE = """
Matt Mallett24faf6a2018-09-05 15:40:28 -07008Test moblab has correct DUT configuration for cts N suite
Matt Mallettcbf08f22018-03-14 14:08:09 -07009"""
10
11TIME = "SHORT"
12TEST_CATEGORY = "Setup"
13TEST_CLASS = "suite"
14TEST_TYPE = "Server"
15
16DOC = """
17Tests that moblab has the minimum number of DUTs, with correct labels. This
18test relieves the pain point of kicking off a long running test suite, but
19having a handful of tests fail, or not run at all because some the DUT setup
20wasn't correct.
21"""
22
23import common
Matt Mallettcbf08f22018-03-14 14:08:09 -070024from autotest_lib.server.cros.dynamic_suite import dynamic_suite
25
26args_dict['add_experimental'] = True
27args_dict['name'] = NAME
28args_dict['job'] = job
29
30dynamic_suite.reimage_and_run(**args_dict)