blob: fb403949bf92ab62c28293a591a7ab8899773da9 [file] [log] [blame]
Chris Masone5552dd72012-02-15 15:01:04 -08001# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Chris Masone6fed6462011-10-20 16:36:43 -07002# 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 = "dummy"
7PURPOSE = "To be run while testing the infrastructure and test harness."
Chris Masone6fed6462011-10-20 16:36:43 -07008
9TIME = "SHORT"
10TEST_CATEGORY = "Dummy"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15This is a dummy test suite. It runs dummy tests that always pass or always fail
16so that we can test result gathering and reporting mechanisms.
17"""
18
19import common
Alex Miller2229c9c2013-08-27 15:20:39 -070020from autotest_lib.server.cros import provision
Chris Masone304d78d2012-08-15 20:20:49 -070021from autotest_lib.server.cros.dynamic_suite import dynamic_suite
Chris Masone6fed6462011-10-20 16:36:43 -070022
Shuqian Zhao24785cc2015-06-01 16:32:18 -070023args_dict['add_experimental'] = True
24args_dict['name'] = 'dummy'
25args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX
26args_dict['job'] = job
27
28dynamic_suite.reimage_and_run(**args_dict)