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