1# Copyright 2022 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 = 'Chrome Browsre Infra Team' 6NAME = 'chromium_Telemetry' 7TIME = 'LONG' 8TEST_CATEGORY = 'Benchmark' 9TEST_CLASS = 'performance' 10TEST_TYPE = 'server' 11PY_VERSION = 3 12 13DOC = ''' 14This server side test suite executes the Telemetry Benchmark: 15loading.desktop. 16 17This benchmark will run on lacros built by browser infra. 18 19This control file is still in experimental stage. 20''' 21 22def run_benchmark(machine): 23 host = hosts.create_host(machine) 24 job.run_test('chromium_Telemetry', host=host, args=args) 25 26parallel_simple(run_benchmark, machines)