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