Home | History | Annotate | Download | only in telemetry_GpuTests
      1 # Copyright (c) 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 AUTHOR = 'chromeos-gfx'
      6 NAME = 'telemetry_GpuTests.webgl_robustness'
      7 ATTRIBUTES = "suite:graphics, suite:perf_v2"
      8 TIME = 'LONG'
      9 TEST_CATEGORY = 'Functional'
     10 TEST_CLASS = 'gl'
     11 TEST_TYPE = 'server'
     12 # TODO(ihf): Reevaluate this once crbug.com/379397 is fixed. For now don't
     13 # run on pinetrail boards.
     14 DEPENDENCIES = 'hw_video_acc_dec_h264'
     15 
     16 DOC = """
     17 This server control file executes the GPU telemetry test: webgl_robustness.
     18 """
     19 
     20 def run_test(machine):
     21     host = hosts.create_host(machine)
     22     job.run_test('telemetry_GpuTests', host=host, test='webgl_robustness')
     23 
     24 
     25 parallel_simple(run_test, machines)
     26