1/*	$NetBSD: drm_mm_selftests.h,v 1.2 2021/12/18 23:45:44 riastradh Exp $	*/
2
3/* SPDX-License-Identifier: GPL-2.0 */
4/* List each unit test as selftest(name, function)
5 *
6 * The name is used as both an enum and expanded as igt__name to create
7 * a module parameter. It must be unique and legal for a C identifier.
8 *
9 * Tests are executed in order by igt/drm_mm
10 */
11selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
12selftest(init, igt_init)
13selftest(debug, igt_debug)
14selftest(reserve, igt_reserve)
15selftest(insert, igt_insert)
16selftest(replace, igt_replace)
17selftest(insert_range, igt_insert_range)
18selftest(align, igt_align)
19selftest(align32, igt_align32)
20selftest(align64, igt_align64)
21selftest(evict, igt_evict)
22selftest(evict_range, igt_evict_range)
23selftest(bottomup, igt_bottomup)
24selftest(lowest, igt_lowest)
25selftest(topdown, igt_topdown)
26selftest(highest, igt_highest)
27selftest(color, igt_color)
28selftest(color_evict, igt_color_evict)
29selftest(color_evict_range, igt_color_evict_range)
30