1# Copyright 2020 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 OS Team" 6NAME = "graphics_TraceReplayExtended.glxgears_1minute" 7TIME = "MEDIUM" 8TEST_CATEGORY = "Performance" 9TEST_CLASS = "graphics" 10ATTRIBUTES = "suite:graphics_per-build" 11TEST_TYPE = "server" 12 13# tast.py uses binaries installed from autotest_server_package.tar.bz2. 14REQUIRE_SSP = True 15 16DOC = """ 17This test runs a game trace replay on repeat for X minutes and measures system/proc status 18""" 19 20def run(machine): 21 host = hosts.create_host(machine) 22 job.run_test("graphics_TraceReplayExtended", host=host, 23 client_tast_test='graphics.TraceReplayExtended.glxgears_1minute_amd64', 24 tast_build_bundle='cros', 25 tast_command_arg=args, 26 max_duration_minutes=10) 27 28parallel_simple(run, machines) 29