OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
scottz
2012/01/24 15:46:00
What suite should this be running in?
| |
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 = "Chrome OS Team" | |
DaleCurtis
2012/01/19 18:22:45
We used to use a test list to decide which tests t
| |
6 NAME = "desktopui_OMXTest" | |
7 PURPOSE = "Verify OMX video decode works." | |
8 CRITERIA = """ | |
9 This test will fail if any of the tests in omx_video_decode_accelerator_unittest fails. | |
DaleCurtis
2012/01/19 18:22:45
80 chars.
Ami GONE FROM CHROMIUM
2012/01/19 18:31:58
Done.
| |
10 """ | |
11 TIME = "LONG" | |
12 TEST_CATEGORY = "Functional" | |
13 TEST_CLASS = "desktopui" | |
14 TEST_TYPE = "client" | |
15 | |
16 DOC = """ | |
17 This is a wrapper test for Chrome omx_video_decode_accelerator_unittest. | |
18 """ | |
19 | |
20 job.run_test('desktopui_OMXTest') | |
OLD | NEW |