Chris Wilson | 50f0033 | 2016-12-22 08:36:09 +0000 | [diff] [blame] | 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 | */ |
| 8 | selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */ |
Chris Wilson | 393b50f | 2016-12-22 08:36:10 +0000 | [diff] [blame] | 9 | selftest(init, igt_init) |
Chris Wilson | 06df8ac | 2016-12-22 08:36:11 +0000 | [diff] [blame] | 10 | selftest(debug, igt_debug) |
Chris Wilson | 900537d | 2016-12-22 08:36:12 +0000 | [diff] [blame] | 11 | selftest(reserve, igt_reserve) |
Chris Wilson | 7886692 | 2016-12-22 08:36:13 +0000 | [diff] [blame] | 12 | selftest(insert, igt_insert) |
Chris Wilson | 2bd966d | 2016-12-22 08:36:14 +0000 | [diff] [blame] | 13 | selftest(replace, igt_replace) |
Chris Wilson | 2fba0de | 2016-12-22 08:36:15 +0000 | [diff] [blame] | 14 | selftest(insert_range, igt_insert_range) |
Chris Wilson | 9b26f2e | 2016-12-22 08:36:16 +0000 | [diff] [blame] | 15 | selftest(align, igt_align) |
| 16 | selftest(align32, igt_align32) |
| 17 | selftest(align64, igt_align64) |
Chris Wilson | 560b328 | 2016-12-22 08:36:17 +0000 | [diff] [blame] | 18 | selftest(evict, igt_evict) |
Chris Wilson | 0e48325 | 2016-12-22 08:36:18 +0000 | [diff] [blame] | 19 | selftest(evict_range, igt_evict_range) |
Chris Wilson | bb18dfcc | 2017-02-02 11:44:34 +0000 | [diff] [blame] | 20 | selftest(bottomup, igt_bottomup) |
Chris Wilson | 05ab3c2 | 2016-12-22 08:36:19 +0000 | [diff] [blame] | 21 | selftest(topdown, igt_topdown) |
Chris Wilson | 4c2ba55 | 2016-12-22 08:36:20 +0000 | [diff] [blame] | 22 | selftest(color, igt_color) |
Chris Wilson | c1b702c | 2016-12-22 08:36:21 +0000 | [diff] [blame] | 23 | selftest(color_evict, igt_color_evict) |
Chris Wilson | d1bac3a | 2016-12-22 08:36:22 +0000 | [diff] [blame] | 24 | selftest(color_evict_range, igt_color_evict_range) |