blob: 6b943ea1c57daf97143b13f278b6679b6c1d9798 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Chris Wilson50f00332016-12-22 08:36:09 +00002/* 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 */
9selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
Chris Wilson393b50f2016-12-22 08:36:10 +000010selftest(init, igt_init)
Chris Wilson06df8ac2016-12-22 08:36:11 +000011selftest(debug, igt_debug)
Chris Wilson900537d2016-12-22 08:36:12 +000012selftest(reserve, igt_reserve)
Chris Wilson78866922016-12-22 08:36:13 +000013selftest(insert, igt_insert)
Chris Wilson2bd966d2016-12-22 08:36:14 +000014selftest(replace, igt_replace)
Chris Wilson2fba0de2016-12-22 08:36:15 +000015selftest(insert_range, igt_insert_range)
Chris Wilson9b26f2e2016-12-22 08:36:16 +000016selftest(align, igt_align)
17selftest(align32, igt_align32)
18selftest(align64, igt_align64)
Chris Wilson560b3282016-12-22 08:36:17 +000019selftest(evict, igt_evict)
Chris Wilson0e483252016-12-22 08:36:18 +000020selftest(evict_range, igt_evict_range)
Chris Wilsonbb18dfcc2017-02-02 11:44:34 +000021selftest(bottomup, igt_bottomup)
Chris Wilson83bc4ec2018-05-21 09:21:29 +010022selftest(lowest, igt_lowest)
Chris Wilson05ab3c22016-12-22 08:36:19 +000023selftest(topdown, igt_topdown)
Chris Wilson83bc4ec2018-05-21 09:21:29 +010024selftest(highest, igt_highest)
Chris Wilson4c2ba552016-12-22 08:36:20 +000025selftest(color, igt_color)
Chris Wilsonc1b702c2016-12-22 08:36:21 +000026selftest(color_evict, igt_color_evict)
Chris Wilsond1bac3a2016-12-22 08:36:22 +000027selftest(color_evict_range, igt_color_evict_range)