Juan Casse | 429d275 | 2013-08-05 14:49:43 -0700 | [diff] [blame] | 1 | # 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 | |
| 5 | AUTHOR = 'jcasse, grundler' |
| 6 | NAME = 'storagequal' |
| 7 | TIME = 'LENGTHY' |
| 8 | TEST_CATEGORY = 'General' |
| 9 | TEST_CLASS = 'suite' |
| 10 | TEST_TYPE = 'Server' |
| 11 | |
| 12 | DOC = """ |
| 13 | This dynamic suite runs a set of client-side solid-state storage tests. |
| 14 | These test data integrity, etc. |
| 15 | |
| 16 | @param build: The name of the image to test. |
| 17 | Ex: x86-mario-release/R17-1412.33.0-a1-b29 |
| 18 | @param board: The board to test on. Ex: x86-mario |
| 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 | """ |
| 25 | |
| 26 | import common |
| 27 | from autotest_lib.server.cros.dynamic_suite import dynamic_suite |
| 28 | |
| 29 | dynamic_suite.reimage_and_run( |
| 30 | build=build, board=board, name=NAME, job=job, pool=pool, |
| 31 | check_hosts=check_hosts, add_experimental=True, num=num, |
| 32 | file_bugs=file_bugs, skip_reimage=dynamic_suite.skip_reimage(globals()), |
Dan Shi | ed823eb | 2013-11-19 13:11:49 -0800 | [diff] [blame] | 33 | devserver_url=devserver_url, timeout_mins=timeout_mins, |
| 34 | version_prefix=provision.CROS_VERSION_PREFIX, |
Fang Deng | 70a9ead | 2014-05-16 16:57:39 -0700 | [diff] [blame] | 35 | wait_for_results=wait_for_results, job_retry=job_retry) |