]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame_incremental - drivers/gpu/drm/selftests/drm_mm_selftests.h
UBUNTU: Ubuntu-5.4.0-117.132
[mirror_ubuntu-focal-kernel.git] / drivers / gpu / drm / selftests / drm_mm_selftests.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: GPL-2.0 */
2/* List each unit test as selftest(name, function)
3 *
4 * The name is used as both an enum and expanded as igt__name to create
5 * a module parameter. It must be unique and legal for a C identifier.
6 *
7 * Tests are executed in order by igt/drm_mm
8 */
9selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
10selftest(init, igt_init)
11selftest(debug, igt_debug)
12selftest(reserve, igt_reserve)
13selftest(insert, igt_insert)
14selftest(replace, igt_replace)
15selftest(insert_range, igt_insert_range)
16selftest(align, igt_align)
17selftest(align32, igt_align32)
18selftest(align64, igt_align64)
19selftest(evict, igt_evict)
20selftest(evict_range, igt_evict_range)
21selftest(bottomup, igt_bottomup)
22selftest(lowest, igt_lowest)
23selftest(topdown, igt_topdown)
24selftest(highest, igt_highest)
25selftest(color, igt_color)
26selftest(color_evict, igt_color_evict)
27selftest(color_evict_range, igt_color_evict_range)