18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* List each unit test as selftest(name, function) 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * The name is used as both an enum and expanded as igt__name to create 58c2ecf20Sopenharmony_ci * a module parameter. It must be unique and legal for a C identifier. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * Tests are executed in order by igt/drm_mm 88c2ecf20Sopenharmony_ci */ 98c2ecf20Sopenharmony_ciselftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */ 108c2ecf20Sopenharmony_ciselftest(init, igt_init) 118c2ecf20Sopenharmony_ciselftest(debug, igt_debug) 128c2ecf20Sopenharmony_ciselftest(reserve, igt_reserve) 138c2ecf20Sopenharmony_ciselftest(insert, igt_insert) 148c2ecf20Sopenharmony_ciselftest(replace, igt_replace) 158c2ecf20Sopenharmony_ciselftest(insert_range, igt_insert_range) 168c2ecf20Sopenharmony_ciselftest(align, igt_align) 178c2ecf20Sopenharmony_ciselftest(frag, igt_frag) 188c2ecf20Sopenharmony_ciselftest(align32, igt_align32) 198c2ecf20Sopenharmony_ciselftest(align64, igt_align64) 208c2ecf20Sopenharmony_ciselftest(evict, igt_evict) 218c2ecf20Sopenharmony_ciselftest(evict_range, igt_evict_range) 228c2ecf20Sopenharmony_ciselftest(bottomup, igt_bottomup) 238c2ecf20Sopenharmony_ciselftest(lowest, igt_lowest) 248c2ecf20Sopenharmony_ciselftest(topdown, igt_topdown) 258c2ecf20Sopenharmony_ciselftest(highest, igt_highest) 268c2ecf20Sopenharmony_ciselftest(color, igt_color) 278c2ecf20Sopenharmony_ciselftest(color_evict, igt_color_evict) 288c2ecf20Sopenharmony_ciselftest(color_evict_range, igt_color_evict_range) 29