blob: 37bbdac52896f85c37f233b94d8fc2bf0b965887 [file] [log] [blame]
Chris Wilson50f00332016-12-22 08:36:09 +00001/* 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) */
Chris Wilson393b50f2016-12-22 08:36:10 +00009selftest(init, igt_init)
Chris Wilson06df8ac2016-12-22 08:36:11 +000010selftest(debug, igt_debug)
Chris Wilson900537d2016-12-22 08:36:12 +000011selftest(reserve, igt_reserve)
Chris Wilson78866922016-12-22 08:36:13 +000012selftest(insert, igt_insert)
Chris Wilson2bd966d2016-12-22 08:36:14 +000013selftest(replace, igt_replace)
Chris Wilson2fba0de2016-12-22 08:36:15 +000014selftest(insert_range, igt_insert_range)
Chris Wilson9b26f2e2016-12-22 08:36:16 +000015selftest(align, igt_align)
16selftest(align32, igt_align32)
17selftest(align64, igt_align64)
Chris Wilson560b3282016-12-22 08:36:17 +000018selftest(evict, igt_evict)
Chris Wilson0e483252016-12-22 08:36:18 +000019selftest(evict_range, igt_evict_range)
Chris Wilsonbb18dfcc2017-02-02 11:44:34 +000020selftest(bottomup, igt_bottomup)
Chris Wilson05ab3c22016-12-22 08:36:19 +000021selftest(topdown, igt_topdown)
Chris Wilson4c2ba552016-12-22 08:36:20 +000022selftest(color, igt_color)
Chris Wilsonc1b702c2016-12-22 08:36:21 +000023selftest(color_evict, igt_color_evict)
Chris Wilsond1bac3a2016-12-22 08:36:22 +000024selftest(color_evict_range, igt_color_evict_range)