• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2021 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 Team'
6NAME = 'tast.pvs-graphics'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:pvs-graphics'
10MAX_RESULT_SIZE_KB = 1024 * 1024
11PY_VERSION = 3
12
13# tast.py uses binaries installed from autotest_server_package.tar.bz2.
14REQUIRE_SSP = True
15
16DOC = '''
17This test suite is part of the Platform Validation Suite (go/cros-pvs)
18and includes a collection of tast.gaphics tests that require no
19special hardware to run.
20'''
21def run(machine):
22    job.run_test('tast',
23                 host=hosts.create_host(machine),
24                 test_exprs=['graphics.Connector',
25                            'graphics.DEQP',
26                            'graphics.FPS',
27                            'graphics.GLBench.hasty',
28                            'graphics.ScreenshotCLI',
29                            'graphics.ScreenshotChrome',
30                            'graphics.Smoke.chrome',
31                            'graphics.Smoke.platform'],
32                 ignore_test_failures=False, max_run_sec=3600,
33                 command_args=args,
34                 clear_tmp=True)
35parallel_simple(run, machines)
36