1# Copyright 2015 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 = "tienchang, krisr, bmahadev, wiley" 6NAME = "wificell-pre-cq" 7PURPOSE = "This suite is a baseline set of tests that act as a wifi pre-cq." 8CRITERIA = "All tests with SUITE=wificell-pre-cq must pass." 9TIME = "SHORT" 10TEST_CLASS = "suite" 11TEST_TYPE = "Server" 12 13DOC = """ 14This suite acts as a pre-cq specific to ChromeOS WiFi related changes and is 15only invoked via a flag in CLs. 16 17@param build: The name of the image to test. 18@param board: The board to test on. 19@param pool: The pool of machines to utilize for scheduling. If pool=None 20 board is used. 21@param check_hosts: require appropriate live hosts to exist in the lab. 22@param SKIP_IMAGE: (optional) If present and True, don't re-image devices. 23@param file_bugs: If True your suite will file bugs on failures. 24@param max_run_time: Amount of time each test shoud run in minutes.i 25 26""" 27 28import common 29from autotest_lib.server.cros import provision 30from autotest_lib.server.cros.dynamic_suite import dynamic_suite 31 32dynamic_suite.reimage_and_run( 33 build=build, board=board, name=NAME, job=job, pool=pool, 34 check_hosts=check_hosts, add_experimental=True, num=num, 35 file_bugs=file_bugs, priority=priority, timeout_mins=timeout_mins, 36 max_runtime_mins=60, devserver_url=devserver_url, 37 version_prefix=provision.CROS_VERSION_PREFIX, 38 wait_for_results=wait_for_results, job_retry=job_retry) 39