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