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