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