1# Copyright (c) 2013 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 5import logging 6 7from autotest_lib.server import test 8from autotest_lib.server.cros import telemetry_runner 9 10 11class telemetry_ScrollingActionTests(test.test): 12 """Run the telemetry scrolling action tests.""" 13 version = 1 14 15 16 def run_once(self, host=None): 17 """Run the telemetry scrolling action tests. 18 19 @param host: host we are running telemetry on. 20 """ 21 telemetry = telemetry_runner.TelemetryRunner(host) 22 result = telemetry.run_telemetry_test('ScrollingActionTest') 23 logging.debug('Telemetry completed with a status of: %s with output:' 24 ' %s', result.status, result.output)