File: test_categories.md

package info (click to toggle)
intel-gpu-tools 2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 64,504 kB
  • sloc: xml: 781,458; ansic: 378,272; python: 8,407; yacc: 2,781; perl: 1,196; sh: 1,177; lex: 487; asm: 227; lisp: 35; makefile: 30
file content (266 lines) | stat: -rw-r--r-- 10,847 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
# IGT GPU Tools Test Documentation Categories

This document explains the different types of test categorization and documentation markup
used in the IGT GPU Tools project for organizing and documenting test cases.

## Overview

IGT GPU Tools uses a structured documentation system with various categories and
subcategories to organize tests. The project has been evolving its documentation markup
to make it more precise and maintainable, with recent changes removing some deprecated
fields like 'Functionality' and 'Test category' that were dependent on developer
interpretation.

!!! warning "Deprecated fields"
    Some tests (e.g. for Core sub-category) have still deprecated fields like
    'Functionality', 'Test category'. There is a work in progress to remove them.

## Primary Documentation Fields

### 1. **Sub-category**
The Sub-category field is the primary organizational unit for grouping related tests.
This field has been actively maintained and expanded with new subcategories being
introduced regularly.

Recent Sub-categories include:

- **Core** : Basic DRM functionality tests
- **Synchronization** : Tests for synchronization mechanisms
- **CMD submission** : Command submission related tests
- **Blitter** : Blitter engine tests (unified for i915 and Xe)
- **GPGPU** : General Purpose GPU compute tests
- **Compute** : Computational workload tests
- **Performance** : Performance measurement tests
- **Memory management** : Memory allocation and management tests
- **Power management** : Power-related functionality tests
- **Display** : Display/KMS related tests
- **Firmware** : Firmware interaction tests
- **Media** : Media processing tests
- **Render copy** : Render copy operation tests
- **Debugging** : Debug and diagnostic tests
- **Workarounds** : Hardware workaround tests
- **Obsolete** : Deprecated or legacy tests
- **SysMan** : System management tests
- **FDinfo** : File descriptor information tests
- **Flat-ccs** : Flat CCS (Color Compression Surface) tests

### 2. **Mega-feature**
While not explicitly detailed in the current documentation, mega-feature appears to be a
higher-level categorization that groups multiple related sub-categories under broader
functional areas.

### 3. **Test Description**
IGT uses the `igt_describe()` macro to attach descriptions to subtests. The description
should complement the test/subtest name and provide context on what is being tested. It
should explain the idea of the test without mentioning implementation details.

**Best practices for descriptions:**

- Focus on the userspace perspective
- Capture the reason for the test's existence
- Be brief and avoid implementation details
- Don't translate code into English

**Good examples:**

- "make sure that legacy cursor updates do not stall atomic commits"
- "check that atomic updates of many planes are indeed atomic and take effect
  immediately after the commit"
- "make sure that the meta-data exposed by the kernel to the userspace is correct and
  matches the used EDID"

## Deprecated Fields

### **Test Category**
The 'Test category' field has been removed from KMS tests documentation as it was not
being used consistently.

### **Functionality**
The 'Functionality' field has also been removed as it "solely depends upon developer's
interpretation" and was making documentation maintenance difficult.

### **Run Type**
The 'Run type' documentation field has been removed from recent versions.

## Documentation Structure

### **Test Organization**
Tests can be organized using `igt_subtest_group` blocks, where the resulting subtest
documentation is a concatenation of its own description and all parenting subtest group
descriptions, starting from the outermost one.

### **Dynamic Subtests**
IGT supports dynamic subtests using `igt_subtest_with_dynamic` for cases where the full
set of possible subtests is too large or impossible to know beforehand. Dynamic subtests
are useful for operations like testing each KMS pipe separately.

## Driver-Specific Categories

### **Intel Tests**
The Intel-specific tests have their own subcategory system:

- **i915** driver tests
- **Xe** driver tests (newer Intel GPU architecture)
- **DRM** general Direct Rendering Manager tests

### **Vendor-Specific**

- **AMDGPU** - AMD GPU specific tests
- **intel-nouveau** - Intel and Nouveau driver interaction tests

## Documentation Generation

The test documentation is automatically generated and can be accessed via the `--describe`
command line switch. The IGT framework also supports `--list-subtests` to enumerate
available subtests and `--run-subtest` to execute specific subtests.

## Recent Changes and Evolution

The IGT project has been actively refining its documentation system, with version 1.29
introducing numerous subcategory additions and removing inconsistent documentation fields.
The focus has shifted toward more precise categorization that is easier to maintain.

### Key Improvements:

- Unification of Blitter subcategory across i915 and Xe
- Standardization of Sub-category/Functionality naming
- Removal of developer-dependent interpretation fields
- Addition of missing documentation fields for SRIOV and Display tests

## Usage

When adding new tests to IGT, developers should:

1. Use appropriate Sub-category classification
2. Provide clear, implementation-agnostic descriptions using `igt_describe()`
3. Follow the established naming conventions
4. Avoid using deprecated documentation fields
5. Ensure consistency with existing test organization

This categorization system helps maintain the large IGT test suite by providing clear
organization and making it easier for developers to find relevant tests and understand
their purpose.

## Documentation Fields and Values Table

Based on the current IGT GPU Tools codebase, here are the documented fields and their
possible values:

### Primary Documentation Fields

| Field | Status | Description | Possible Values |
|-------|--------|-------------|-----------------|
| **Sub-category** | Active | Primary organizational unit for grouping related tests | See detailed list below |
| **Test Description** | Active | Human-readable description using `igt_describe()` | Free text (implementation-agnostic) |
| **Mega-feature** | Active | High-level categorization grouping multiple sub-categories | Driver-specific groupings |

### Main Test Categories (Top-level)

| Category | Description | Examples |
|----------|-------------|----------|
| **Core Tests** | Tests for core DRM ioctls and behaviour | Authentication, basic operations |
| **KMS Tests** | Tests for kernel mode setting | Display functionality, connectors |
| **GEM Tests** | Tests for graphics execution manager | Memory management, buffer operations |
| **i915 Tests** | Tests for overall i915 driver behaviour | Intel-specific functionality |
| **Display Tests** | Tests for display validation | Panel fitting, CRC validation |
| **Perf Tests** | Tests for performance metrics | GPU performance counters |
| **PM Tests** | Tests for power management features | Suspend/resume, power states |
| **Prime Tests** | Tests for buffer sharing | Inter-device buffer sharing |
| **Debugfs Tests** | Tests for debugfs behaviour | Debug filesystem functionality |
| **DRM Tests** | Tests for libdrm behaviour | Library functionality |
| **Meta Tests** | Tests for the CI system itself | Test infrastructure validation |
| **SW Sync Tests** | Tests for software sync (fencing) | Synchronization primitives |
| **vGEM Tests** | Tests for virtual graphics execution manager | Virtual GPU functionality |
| **Tools Tests** | Tests for IGT tools behaviour | Tool validation |

### Sub-category Values (Detailed)

#### Core Infrastructure
| Sub-category | Description |
|--------------|-------------|
| **Core** | Basic DRM functionality tests |
| **Synchronization** | Tests for synchronization mechanisms |
| **Device** | Device enumeration and management |
| **Authentication** | DRM authentication mechanisms |

#### Intel-Specific Sub-categories
| Sub-category | Description |
|--------------|-------------|
| **CMD submission** | Command submission related tests |
| **Blitter** | Blitter engine tests (unified for i915 and Xe) |
| **GPGPU** | General Purpose GPU compute tests |
| **Compute** | Computational workload tests |
| **Performance** | Performance measurement tests |
| **Memory management** | Memory allocation and management tests |
| **Power management** | Power-related functionality tests |
| **Firmware** | Firmware interaction tests |
| **Media** | Media processing tests |
| **Render copy** | Render copy operation tests |
| **Debugging** | Debug and diagnostic tests |
| **Workarounds** | Hardware workaround tests |
| **SysMan** | System management tests |
| **FDinfo** | File descriptor information tests |
| **Flat-ccs** | Flat CCS (Color Compression Surface) tests |

#### Display Sub-categories
| Sub-category | Description |
|--------------|-------------|
| **Display** | General display functionality |
| **KMS** | Kernel Mode Setting tests |
| **Chamelium** | External test device integration |
| **Panel** | Panel-specific functionality |
| **HDMI** | HDMI interface tests |
| **DisplayPort** | DisplayPort interface tests |
| **VGA** | VGA interface tests |

#### Vendor-Specific Sub-categories
| Sub-category | Description |
|--------------|-------------|
| **AMDGPU** | AMD GPU specific tests |
| **intel-nouveau** | Intel and Nouveau driver interaction |
| **i915** | Intel i915 driver tests |
| **Xe** | Intel Xe driver tests |

#### Legacy/Deprecated Sub-categories
| Sub-category | Description |
|--------------|-------------|
| **Obsolete** | Deprecated or legacy tests |

### Deprecated Fields

| Field | Status | Reason for Deprecation |
|-------|--------|----------------------|
| **Test Category** | WIP | Not used consistently |
| **Functionality** | WIP | Developer-dependent interpretation |
| **Run Type** | WIP | Unclear usage patterns |

### Driver-Specific Mega-features

| Driver | Mega-feature Examples |
|--------|---------------------|
| **i915** | Display, GEM, Performance, Power Management |
| **Xe** | Compute, CMD Submission, Memory Management |
| **AMDGPU** | Display, Compute, Performance |

### Documentation Markup Examples

```c
/**
 * SUBTEST: %s
 * Description: %s
 * Sub-category: %s
 */

// Example usage:
igt_describe("check that atomic updates are indeed atomic");
igt_subtest_with_dynamic("atomic-plane-updates") {
    // Test implementation
}
```

### Field Usage Guidelines

1. **Sub-category**: Always required, must match established categories
2. **Test Description**: Should be implementation-agnostic and focus on what is tested
3. **Mega-feature**: Used for high-level organization, typically driver-specific
4. **Avoid deprecated fields**: Do not use Test Category, Functionality, or Run Type