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