Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* List each unit test as selftest(name, function)
2 *
3 * The name is used as both an enum and expanded as igt__name to create
4 * a module parameter. It must be unique and legal for a C identifier.
5 *
6 * Tests are executed in order by igt/drm_mm
7 */
8selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
9selftest(init, igt_init)
10selftest(debug, igt_debug)
11selftest(reserve, igt_reserve)
12selftest(insert, igt_insert)
13selftest(replace, igt_replace)
14selftest(insert_range, igt_insert_range)
15selftest(align, igt_align)
16selftest(align32, igt_align32)
17selftest(align64, igt_align64)
18selftest(evict, igt_evict)
19selftest(evict_range, igt_evict_range)
20selftest(bottomup, igt_bottomup)
21selftest(topdown, igt_topdown)
22selftest(color, igt_color)
23selftest(color_evict, igt_color_evict)
24selftest(color_evict_range, igt_color_evict_range)