blob: cc16b97865d73a4eb53e2b3f0f73422b5780355d [file] [log] [blame]
David Haddock1479fc62016-10-24 17:06:01 -07001# Copyright 2016 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 = "ARC++ Team"
6NAME = "gts"
7PURPOSE = "GTS tests for ARC++"
8CRITERIA = "All tests with SUITE=gts must pass."
9
10TIME = "SHORT"
11TEST_CATEGORY = "General"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
16This suite wraps the current GTS bundle for autotest.
17"""
18
19import common
20from autotest_lib.server.cros import provision
21from autotest_lib.server.cros.dynamic_suite import dynamic_suite
22
23
24args_dict['name'] = NAME
25args_dict['job'] = job
26args_dict['add_experimental'] = True
27args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX
28
29dynamic_suite.reimage_and_run(**args_dict)
30