2022-02-23 01:48:39 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/* 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_buddy
|
|
|
|
*/
|
|
|
|
selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
|
2022-02-23 01:48:40 +08:00
|
|
|
selftest(buddy_alloc_limit, igt_buddy_alloc_limit)
|
2022-02-23 01:48:41 +08:00
|
|
|
selftest(buddy_alloc_range, igt_buddy_alloc_range)
|
2022-02-23 01:48:42 +08:00
|
|
|
selftest(buddy_alloc_optimistic, igt_buddy_alloc_optimistic)
|
2022-02-23 01:48:43 +08:00
|
|
|
selftest(buddy_alloc_pessimistic, igt_buddy_alloc_pessimistic)
|
2022-02-23 01:48:44 +08:00
|
|
|
selftest(buddy_alloc_smoke, igt_buddy_alloc_smoke)
|
2022-02-23 01:48:45 +08:00
|
|
|
selftest(buddy_alloc_pathological, igt_buddy_alloc_pathological)
|