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