1 # Copyright 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 # This file was hand-created from webrtc.stress (which in turn 6 # is generated by generate_controlfiles.py). The purpose is to 7 # run tests on the Buddy board with onboard Kepler hardware. 8 9 from autotest_lib.client.common_lib import utils 10 11 AUTHOR = 'sbasi, achuith, rohitbm' 12 NAME = 'telemetry_Benchmarks.webrtc.stress.buddy.kepler' 13 ATTRIBUTES = 'suite:crosbolt_perf_nightly' 14 TIME = 'LONG' 15 TEST_CATEGORY = 'Benchmark' 16 TEST_CLASS = 'performance' 17 TEST_TYPE = 'server' 18 DEPENDENCIES = "board:buddy, hw_video_acc_enc_vp8" 19 20 DOC = ''' 21 This server side test suite executes the Telemetry Benchmark: 22 webrtc.stress 23 This is part of Chrome for Chrome OS performance testing. 24 25 Pass local=True to run with local telemetry and no AFE server. 26 ''' 27 28 def run_benchmark(machine): 29 host = hosts.create_host(machine) 30 job.run_test('telemetry_Benchmarks', host=host, 31 benchmark='webrtc.stress', 32 tag='webrtc.stress.buddy.kepler', 33 args=utils.args_to_dict(args)) 34 35 parallel_simple(run_benchmark, machines) 36