blob: 87667140ffac60727f5b854c89fd9d59d1db62f5 [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"
6NAME = "moblab_setup"
7PURPOSE = """
8Test moblab has correct DUT configuration in preparation of a longer
9running test
10"""
11
12TIME = "SHORT"
13TEST_CATEGORY = "Setup"
14TEST_CLASS = "suite"
15TEST_TYPE = "Server"
16
17DOC = """
18Tests that moblab has the minimum number of DUTs, with correct labels. This
19test relieves the pain point of kicking off a long running test suite, but
20having a handful of tests fail, or not run at all because some the DUT setup
21wasn't correct.
22"""
23
24import common
25from autotest_lib.server.cros import provision
26from autotest_lib.server.cros.dynamic_suite import dynamic_suite
27
28args_dict['add_experimental'] = True
29args_dict['name'] = NAME
30args_dict['job'] = job
31
32dynamic_suite.reimage_and_run(**args_dict)