blob: fbf2c7ca9fc977941ba80ef6f0e09d31ce1d2cd3 [file] [log] [blame]
Chris Masone6a0680f2012-03-02 08:40:00 -08001# Copyright (c) 2012 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 Team"
6NAME = "servo"
7PURPOSE = "To run all tests that leverage Servo."
8CRITERIA = "None."
9
10TIME = "SHORT"
11TEST_CATEGORY = "Servo"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
16This is a servo test suite. It runs tests that require Servo device
17automation in order to verfiy that Servo is functioning normally.
18"""
19
20import common
Chris Masone304d78d2012-08-15 20:20:49 -070021from autotest_lib.server.cros.dynamic_suite import dynamic_suite
Chris Masone6a0680f2012-03-02 08:40:00 -080022
23dynamic_suite.reimage_and_run(
Scott Zawalskic0cb0e42012-08-10 11:58:56 -040024 build=build, board=board, name='servo', job=job, pool=pool, num=num,
Alex Miller2a861b32012-09-27 14:16:49 -070025 add_experimental=True, file_bugs=file_bugs,
Dan Shi0d8fcfa2013-06-10 12:50:16 -070026 skip_reimage=dynamic_suite.skip_reimage(globals()),
27 devserver_url=devserver_url)