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