1AUTHOR = "ChromeOS Team" 2NAME = "power_VideoPlayback.sw_decoder_fast" 3PURPOSE = "Measure video playback power usage." 4 5CRITERIA = "This test is a benchmark." 6TIME = "MEDIUM" 7TEST_CATEGORY = "Benchmark" 8TEST_CLASS = "power" 9TEST_TYPE = "client" 10PY_VERSION = 3 11 12DOC = """ 13This test makes sure that power_VideoPlayback working fine. 14 15This version of the test forces Chrome to use software decoder. 16""" 17 18args_dict = utils.args_to_dict(args) 19pdash_note = args_dict.get('pdash_note', '') 20job.run_test('power_VideoPlayback', use_hw_decode=False, tag=NAME.split('.')[1], 21 secs_per_video=10, pdash_note=pdash_note, seconds_period=1, 22 fast=True) 23