1AUTHOR = "Chrome OS Team" 2NAME = "power_Display.cabc" 3PURPOSE = "Measure display power usage." 4CRITERIA = "This test is a benchmark." 5TIME = "SHORT" 6TEST_CATEGORY = "Benchmark" 7TEST_CLASS = "power" 8TEST_TYPE = "client" 9 10DOC = """ 11This test records power related statistics while displaying different static 12pages using settings that usually utilize panel CABC algorithm. 13""" 14 15CABC_PAGES = ['white', 'black', 16 'white', 'grey10', 17 'white', 'grey20', 18 'white', 'grey30', 19 'white', 'grey40', 20 'white', 'grey50', 21 'white', 'checker1', 22 'white', 'checker90', 23 'white', 'checker80', 24 'white', 'checker70', 25 'white', 'checker60', 26 'white', 'checker50'] 27 28args_dict = utils.args_to_dict(args) 29pdash_note = args_dict.get('pdash_note', '') 30job.run_test('power_Display', tag=NAME.split('.')[1], pages=CABC_PAGES, 31 secs_per_page=20, seconds_period=1, pdash_note=pdash_note) 32