xref: /aosp_15_r20/external/autotest/server/site_tests/tast/control.pvs-display (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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-display'
7TIME = 'MEDIUM'
8TEST_TYPE = 'Server'
9ATTRIBUTES = 'suite:pvs-display'
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'''
21
22def run(machine):
23    job.run_test('tast',
24                 host=hosts.create_host(machine),
25                 test_exprs=['('
26                   ' "name:graphics.IGT.kms_*" && '
27                   ' !"name:graphics.IGT.kms_addfb_basic" && '
28                   ' !"name:graphics.IGT.kms_atomic" && '
29                   ' !"name:graphics.IGT.kms_atomic_transition" && '
30                   ' !"name:graphics.IGT.kms_concurrent" && '
31                   ' !"name:graphics.IGT.kms_content_protection" && '
32                   ' !"name:graphics.IGT.kms_cursor_legacy" && '
33                   ' !"name:graphics.IGT.kms_dp_dsc" && '
34                   ' !"name:graphics.IGT.kms_flip" && '
35                   ' !"name:graphics.IGT.kms_panel_fitting" && '
36                   ' !"name:graphics.IGT.kms_plane" && '
37                   ' !"name:graphics.IGT.kms_plane_alpha_blend" && '
38                   ' !"name:graphics.IGT.kms_plane_cursor" && '
39                   ' !"name:graphics.IGT.kms_plane_multiple" && '
40                   ' !"name:graphics.IGT.kms_plane_scaling" && '
41                   ' !"name:graphics.IGT.kms_prime" && '
42                   ' !"name:graphics.IGT.kms_setmode" && '
43                   ' !"name:graphics.IGT.kms_vblank" '
44                 ')'],
45                 ignore_test_failures=True, max_run_sec=21600,
46                 command_args=args)
47
48parallel_simple(run, machines)
49