1# Copyright 2015 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 = "graphics_PowerConsumption" 7TIME = "MEDIUM" 8TEST_CATEGORY = "Performance" 9TEST_CLASS = "graphics" 10ATTRIBUTES = "suite:bvt-perbuild" 11TEST_TYPE = "server" 12DEPENDENCIES = "rpm, power:battery" 13BUG_TEMPLATE = { 14 "labels": ["OS-Chrome"], 15 "components": ["OS>Kernel>Graphics"], 16} 17 18DOC = """ 19The test outputs the power consumption for WebGL Aquarium gfx demo. 20""" 21 22 23def run(machine): 24 host = hosts.create_host(machine) 25 job.run_test("graphics_PowerConsumption", host=host, 26 client_test='graphics_WebGLAquarium') 27 28 29parallel_simple(run, machines) 30