blob: ea681cf945a9efb6f4784f828d9f74ed18e50d0e [file] [log] [blame]
Christopher Wiley1057ab22014-11-17 13:11:45 -08001# Copyright 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 = 'wiley, avakulenko, keybuk'
6NAME = 'tendo_experimental'
7PURPOSE = 'Staging ground for Tendo BVT candidates'
Christopher Wiley1057ab22014-11-17 13:11:45 -08008
9TIME = 'SHORT'
10TEST_CATEGORY = 'General'
11TEST_CLASS = 'suite'
12TEST_TYPE = 'Server'
13
14DOC = """
15Before a test is added to the BVT, it must demonstrate a track
16record of stability running in the lab. The track record is
17created by adding it to a suite and allowing it to run. This suite
18groups Tendo related tests for this purpose.
19
20@param build: The name of the image to test.
21 Ex: x86-mario-release/R17-1412.33.0-a1-b29
22@param board: The board to test on. Ex: x86-mario
23@param pool: The pool of machines to utilize for scheduling. If pool=None
24 board is used.
25@param check_hosts: require appropriate live hosts to exist in the lab.
26"""
27
28import common
Christopher Wiley1057ab22014-11-17 13:11:45 -080029from autotest_lib.server.cros.dynamic_suite import dynamic_suite
30
31
Shuqian Zhao24785cc2015-06-01 16:32:18 -070032args_dict['add_experimental'] = False
Shuqian Zhao24785cc2015-06-01 16:32:18 -070033args_dict['name'] = NAME
34args_dict['job'] = job
Christopher Wiley1057ab22014-11-17 13:11:45 -080035
Shuqian Zhao24785cc2015-06-01 16:32:18 -070036dynamic_suite.reimage_and_run(**args_dict)