2016-12-22 16:36:09 +08:00
|
|
|
/* List each unit test as selftest(name, function)
|
|
|
|
*
|
|
|
|
* The name is used as both an enum and expanded as igt__name to create
|
|
|
|
* a module parameter. It must be unique and legal for a C identifier.
|
|
|
|
*
|
|
|
|
* Tests are executed in order by igt/drm_mm
|
|
|
|
*/
|
|
|
|
selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
|
2016-12-22 16:36:10 +08:00
|
|
|
selftest(init, igt_init)
|
2016-12-22 16:36:11 +08:00
|
|
|
selftest(debug, igt_debug)
|
2016-12-22 16:36:12 +08:00
|
|
|
selftest(reserve, igt_reserve)
|
2016-12-22 16:36:13 +08:00
|
|
|
selftest(insert, igt_insert)
|
2016-12-22 16:36:14 +08:00
|
|
|
selftest(replace, igt_replace)
|
2016-12-22 16:36:15 +08:00
|
|
|
selftest(insert_range, igt_insert_range)
|
2016-12-22 16:36:16 +08:00
|
|
|
selftest(align, igt_align)
|
|
|
|
selftest(align32, igt_align32)
|
|
|
|
selftest(align64, igt_align64)
|
2016-12-22 16:36:17 +08:00
|
|
|
selftest(evict, igt_evict)
|
2016-12-22 16:36:18 +08:00
|
|
|
selftest(evict_range, igt_evict_range)
|