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