1 # Copyright (c) 2013 The Chromium 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 = "Chrome OS Team, chromeos-video (a] google.com" 6 NAME = "video_VDAPerf" 7 PURPOSE = "Monitor the performance of the Chromium hardware VDA." 8 CRITERIA = """ 9 The test fails if the video_decode_accelerator_unittest fails or crashes. 10 """ 11 ATTRIBUTES = "suite:crosbolt_perf_nightly" 12 SUITE = "crosbolt_perf_nightly" 13 TIME = "SHORT" 14 TEST_CATEGORY = "Performance" 15 TEST_CLASS = "video" 16 TEST_TYPE = "client" 17 # Reboot in the lab after the test ends. 18 DEPENDENCIES='cleanup-reboot, hw_video_acc_h264' 19 BUG_TEMPLATE = { 20 'labels': ['OS-Chrome', 'VideoTestFailure'], 21 'cc': ['chromeos-video-test-failures (a] google.com'], 22 } 23 24 DOC = """ 25 This test utilizes the video_decode_accelerator_unittest to measure the 26 performance of the Chromium hardware Video Decode Accelerator. 27 """ 28 29 # A list of test cases. Each entry consists of the following parts: 30 # [download_path, width, height, frame_num, fragment_num, profile, fps] 31 test_cases = [ 32 ['crowd/crowd1080-8a06b8d0da05bb62166c199be855d617.h264', 1920, 1080, 500, 506, 1, 50], 33 ['crowd/crowd720-8f5d51b87ca7942133b76c9132438883.h264', 1280, 720, 500, 502, 1, 50] 34 ] 35 36 constraints = [ 37 'crowd1080_h264_frame_drop_rate == 0', 38 'crowd720_h264_frame_drop_rate == 0'] 39 40 job.run_test('video_VDAPerf', test_cases=test_cases, constraints=constraints) 41