blob: aa9d5569c5040cca529049243ede23f5a099b016 [file] [log] [blame]
mukesh agrawaldee3fd02013-05-10 13:12:20 -07001# 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 = "Chrome OS "
6NAME = "network_nightly"
7PURPOSE = "A simple example suite."
8CRITERIA = "All tests with SUITE=network_nightly must pass."
9
10TIME = "SHORT"
11TEST_CATEGORY = "Functional"
12TEST_CLASS = "suite"
Alex Miller185381b2013-07-26 14:10:38 -070013TEST_TYPE = "Server"
mukesh agrawaldee3fd02013-05-10 13:12:20 -070014
15DOC = """
16This dynamic suite runs a set of client-side networking tests.
17These test connection manager and DHCP behavior.
18
19@param build: The name of the image to test.
20 Ex: x86-mario-release/R17-1412.33.0-a1-b29
21@param board: The board to test on. Ex: x86-mario
22@param pool: The pool of machines to utilize for scheduling. If pool=None
23 board is used.
24@param check_hosts: require appropriate live hosts to exist in the lab.
25@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
26@param file_bugs: If True your suite will file bugs on failures.
27@param max_run_time: Amount of time each test shoud run in minutes.
28"""
29
30import common
31from autotest_lib.server.cros.dynamic_suite import dynamic_suite
32
33dynamic_suite.reimage_and_run(
mukesh agrawal73850c92013-05-10 16:41:35 -070034 build=build, board=board, name=NAME, job=job, pool=pool,
mukesh agrawaldee3fd02013-05-10 13:12:20 -070035 check_hosts=check_hosts, add_experimental=True, num=num,
36 file_bugs=file_bugs, skip_reimage=dynamic_suite.skip_reimage(globals()),
Dan Shi7458bf62013-06-10 12:50:16 -070037 max_runtime_mins=20, devserver_url=devserver_url)