blob: 5d672e54f29172e19309901d898d7a1409f377e8 [file] [log] [blame]
Scott Zawalskib88e86d2013-01-23 09:58:48 -05001# Copyright (c) 2013 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 = "kjellander, phoglund, webrtc-cros-build"
Scott Zawalskia5bed3e2013-01-25 10:00:27 -05006NAME = "WebRTC Suite"
Scott Zawalskib88e86d2013-01-23 09:58:48 -05007TIME = "MEDIUM"
8TEST_CATEGORY = "General"
9TEST_CLASS = "suite"
10TEST_TYPE = "Server"
11
12DOC = """
13WebRTC testing suite.
14
15@param build: The name of the image to test.
16 Ex: x86-mario-release/R17-1412.33.0-a1-b29
17@param board: The board to test on. Ex: x86-mario
18@param pool: The pool of machines to utilize for scheduling. If pool=None
19 board is used.
20@param check_hosts: require appropriate live hosts to exist in the lab.
21@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
22"""
23
24import common
Alex Miller2229c9c2013-08-27 15:20:39 -070025from autotest_lib.server.cros import provision
Scott Zawalskib88e86d2013-01-23 09:58:48 -050026from autotest_lib.server.cros.dynamic_suite import dynamic_suite
27
beepsc8a875b2013-03-25 10:20:38 -070028
29# Values specified in this bug template will override default values when
30# filing bugs on tests that are a part of this suite. If left unspecified
31# the bug filer will fallback to it's defaults.
32_BUG_TEMPLATE = {
Henrik Kjellander6f805b02013-05-28 19:53:46 +020033 'labels': ['Cr-Blink-WebRTC'],
beepsc8a875b2013-03-25 10:20:38 -070034 'owner': '',
35 'status': None,
36 'summary': None,
37 'title': None,
beeps84e7bb42013-05-31 12:00:06 -070038 'cc': ['webrtc-cros-build@google.com',
39 'beeps@chromium.org']
beepsc8a875b2013-03-25 10:20:38 -070040}
41
Scott Zawalskib88e86d2013-01-23 09:58:48 -050042dynamic_suite.reimage_and_run(
43 build=build, board=board, name='webrtc', job=job, pool=pool,
44 check_hosts=check_hosts, add_experimental=True, num=num,
Simran Basi07511372013-11-26 11:22:52 -080045 file_bugs=True, priority=priority, timeout_mins=timeout_mins,
Alex Miller2229c9c2013-08-27 15:20:39 -070046 bug_template=_BUG_TEMPLATE, devserver_url=devserver_url,
Dan Shied823eb2013-11-19 13:11:49 -080047 version_prefix=provision.CROS_VERSION_PREFIX,
Fang Deng70a9ead2014-05-16 16:57:39 -070048 wait_for_results=wait_for_results, job_retry=job_retry)