1 # Copyright 2014 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 5 # Do not edit this file! It was created by generate_controlfiles.py. 6 7 AUTHOR = 'chromeos-gfx' 8 NAME = 'telemetry_GpuTests.hardware_accelerated_feature' 9 ATTRIBUTES = "suite:graphics, suite:graphics_browser, suite:graphics_per-day" 10 SUITE = 'graphics_per-day, graphics, graphics_browser' 11 TIME = 'LONG' 12 TEST_CATEGORY = 'Functional' 13 TEST_CLASS = 'gl' 14 TEST_TYPE = 'server' 15 16 DOC = ''' 17 This server control file executes the GPU telemetry test: hardware_accelerated_feature. 18 19 Pass local=True to run with local telemetry and no AFE server. 20 ''' 21 22 from autotest_lib.client.common_lib import utils 23 24 def run_test(machine): 25 host = hosts.create_host(machine) 26 job.run_test('telemetry_GpuTests', 27 host=host, 28 test='hardware_accelerated_feature', 29 args=utils.args_to_dict(args)) 30 31 32 parallel_simple(run_test, machines)