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 */ 11 selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */ 12 selftest(init, igt_init) 13 selftest(debug, igt_debug) 14 selftest(reserve, igt_reserve) 15 selftest(insert, igt_insert) 16 selftest(replace, igt_replace) 17 selftest(insert_range, igt_insert_range) 18 selftest(align, igt_align) 19 selftest(align32, igt_align32) 20 selftest(align64, igt_align64) 21 selftest(evict, igt_evict) 22 selftest(evict_range, igt_evict_range) 23 selftest(bottomup, igt_bottomup) 24 selftest(lowest, igt_lowest) 25 selftest(topdown, igt_topdown) 26 selftest(highest, igt_highest) 27 selftest(color, igt_color) 28 selftest(color_evict, igt_color_evict) 29 selftest(color_evict_range, igt_color_evict_range) 30