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