blob: 43346af91a7e5705c6dff2e573ec9faa6bff7f62 [file] [log] [blame]
Krishna Gavinid3f0f712016-09-30 12:14:43 -07001# Copyright (c) 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 = "Krishna Gavini <krishnargv@chromium.org>"
6NAME = "longevity_two"
7PURPOSE = "Suite for automated longevity tests."
8
9TIME = "LONG"
10TEST_CATEGORY = "Functional"
11TEST_CLASS = "suite"
12TEST_TYPE = "server"
13
14DOC = """
15This suite runs the set of kiosk longevity tests on various devices in the lab.
16"""
17
18import common
Krishna Gavinid3f0f712016-09-30 12:14:43 -070019from autotest_lib.server.cros.dynamic_suite import dynamic_suite
20
21# Values specified in this bug template will override default values when
22# filing bugs on tests that are a part of this suite. If left unspecified
23# the bug filer will fallback to it's defaults.
24_BUG_TEMPLATE = {
25 'labels': ['longevity', 'longevity-auto-bug'],
harpreet50a88f22016-10-27 12:50:24 -070026 'owner': '',
Krishna Gavinid3f0f712016-09-30 12:14:43 -070027 'status': None,
28 'summary': None,
29 'title': None,
harpreet50a88f22016-10-27 12:50:24 -070030 'cc': ['kiosk-autotest-alerts@google.com']
Krishna Gavinid3f0f712016-09-30 12:14:43 -070031}
32
harpreet50a88f22016-10-27 12:50:24 -070033args_dict['name'] = NAME
Krishna Gavinid3f0f712016-09-30 12:14:43 -070034args_dict['add_experimental'] = True
35args_dict['bug_template'] = _BUG_TEMPLATE
Krishna Gavinid3f0f712016-09-30 12:14:43 -070036args_dict['job'] = job
37
38dynamic_suite.reimage_and_run(**args_dict)