]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/selftests/drm_mm_selftests.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / selftests / drm_mm_selftests.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
50f0033d
CW
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) */
393b50f3 10selftest(init, igt_init)
06df8ac6 11selftest(debug, igt_debug)
900537dc 12selftest(reserve, igt_reserve)
7886692a 13selftest(insert, igt_insert)
2bd966d1 14selftest(replace, igt_replace)
2fba0de0 15selftest(insert_range, igt_insert_range)
9b26f2ed
CW
16selftest(align, igt_align)
17selftest(align32, igt_align32)
18selftest(align64, igt_align64)
560b3284 19selftest(evict, igt_evict)
0e483254 20selftest(evict_range, igt_evict_range)
bb18dfcc 21selftest(bottomup, igt_bottomup)
05ab3c2e 22selftest(topdown, igt_topdown)
4c2ba55b 23selftest(color, igt_color)
c1b702c9 24selftest(color_evict, igt_color_evict)
d1bac3a7 25selftest(color_evict_range, igt_color_evict_range)