blob: 85e84e0aabbef3da4d5f28c002e10f8cb955f18b [file] [log] [blame]
Ilja H. Friedel54547492012-07-11 12:58:03 -07001# 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 = "graphicsGLES"
7PURPOSE = "Test graphics functionality on ARM/GLES devices."
8CRITERIA = "All tests with SUITE=graphicsGLES should complete and not hang."
9
10TIME = "LONG"
11TEST_CATEGORY = "Graphics"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
16This is the graphics test suite. It should consist of functional and stressful
17graphics tests. In general we don't want these tests to hang the system,
18although this may happen especially with piglit. For functionality contact
19suite owners: ihf|sabercrombie|marcheu@chromium.org
20
21Tests should be run in order of increasing likeness of hanging the system
22graphics_GLBench 5 minutes
23
24The machine should reboot after finishing the suite or timing out.
25
26@param build: The name of the image to test.
27 Ex: x86-mario-release/R17-1412.33.0-a1-b29
28@param board: The board to test on. Ex: x86-mario
29@param pool: The pool of machines to utilize for scheduling. If pool=None
30 board is used.
31@param check_hosts: require appropriate live hosts to exist in the lab.
32@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
33"""
34
35import common
Chris Masone304d78d2012-08-15 20:20:49 -070036from autotest_lib.server.cros.dynamic_suite import dynamic_suite
Ilja H. Friedel54547492012-07-11 12:58:03 -070037
38dynamic_suite.reimage_and_run(
39 build=build, board=board, name='graphicsGLES', job=job, pool=pool,
Scott Zawalskic0cb0e42012-08-10 11:58:56 -040040 check_hosts=check_hosts, add_experimental=True, num=num,
Dan Shi0d8fcfa2013-06-10 12:50:16 -070041 file_bugs=file_bugs, skip_reimage=dynamic_suite.skip_reimage(globals()),
42 devserver_url=devserver_url)