• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
9from autotest_lib.client.common_lib import utils
10
11AUTHOR = 'sbasi, achuith, rohitbm'
12NAME = 'telemetry_Benchmarks.webrtc.stress.buddy.kepler'
13ATTRIBUTES = 'suite:crosbolt_perf_nightly'
14TIME = 'LONG'
15TEST_CATEGORY = 'Benchmark'
16TEST_CLASS = 'performance'
17TEST_TYPE = 'server'
18DEPENDENCIES = "board:buddy, hw_video_acc_enc_vp8"
19
20DOC = '''
21This server side test suite executes the Telemetry Benchmark:
22webrtc.stress
23This is part of Chrome for Chrome OS performance testing.
24
25Pass local=True to run with local telemetry and no AFE server.
26'''
27
28def 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
35parallel_simple(run_benchmark, machines)
36