blob: 689adbf0bdada342a97e063146b726d2b5a1e885 [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
Chris Masone304d78d2012-08-15 20:20:49 -070020from autotest_lib.server.cros.dynamic_suite import dynamic_suite
Chris Masone6fed6462011-10-20 16:36:43 -070021
Shuqian Zhao24785cc2015-06-01 16:32:18 -070022args_dict['add_experimental'] = True
23args_dict['name'] = 'dummy'
Shuqian Zhao24785cc2015-06-01 16:32:18 -070024args_dict['job'] = job
25
26dynamic_suite.reimage_and_run(**args_dict)