1# Copyright (c) 2012 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-perf" 6NAME = "telemetry_ScrollingActionTests" 7TIME = "LONG" 8TEST_CATEGORY = "Functional" 9TEST_TYPE = "server" 10PY_VERSION = 3 11 12DOC = """ 13This server side test suite executes the Telemetry Scrolling Benchmark. 14This is part of our effort to support Chrome for ChromeOS performance testing. 15""" 16 17def run_test(machine): 18 host = hosts.create_host(machine) 19 job.run_test("telemetry_ScrollingActionTests", host=host) 20 21 22parallel_simple(run_test, machines) 23