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