1# Copyright 2018 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 7from autotest_lib.client.common_lib import utils 8 9AUTHOR = 'ChromeOS Team' 10NAME = 'telemetry_Benchmarks.blink_perf.image_decoder' 11# Disable this test until it can be fixed: http://b/170998795 12# ATTRIBUTES = 'suite:crosbolt_perf_nightly' 13TIME = 'LONG' 14TEST_CATEGORY = 'Benchmark' 15TEST_CLASS = 'performance' 16TEST_TYPE = 'server' 17PY_VERSION = 3 18 19DOC = ''' 20This server side test suite executes the Telemetry Benchmark: 21blink_perf.image_decoder 22This is part of Chrome for ChromeOS performance testing. 23 24Pass local=True to run with local telemetry and no AFE server. 25''' 26 27def run_benchmark(machine): 28 host = hosts.create_host(machine) 29 dargs = utils.args_to_dict(args) 30 dargs['extra_args'] = ''.split() 31 job.run_test('telemetry_Benchmarks', host=host, 32 benchmark='blink_perf.image_decoder', 33 tag='blink_perf.image_decoder', 34 args=dargs) 35 36parallel_simple(run_benchmark, machines)