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