2019-08-19 17:59:26 +08:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/* List each unit test as selftest(name, function)
|
|
|
|
*
|
|
|
|
* The name is used as both an enum and expanded as subtest__name to create
|
|
|
|
* a module parameter. It must be unique and legal for a C identifier.
|
|
|
|
*
|
|
|
|
* The function should be of type int function(void). It may be conditionally
|
2020-06-05 22:19:53 +08:00
|
|
|
* compiled using #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST).
|
2019-08-19 17:59:26 +08:00
|
|
|
*
|
|
|
|
* Tests are executed in order by igt/dmabuf_selftest
|
|
|
|
*/
|
|
|
|
selftest(sanitycheck, __sanitycheck__) /* keep first (igt selfcheck) */
|
2019-08-19 17:59:27 +08:00
|
|
|
selftest(dma_fence, dma_fence)
|
2020-04-09 19:01:01 +08:00
|
|
|
selftest(dma_fence_chain, dma_fence_chain)
|
2022-03-11 17:27:53 +08:00
|
|
|
selftest(dma_fence_unwrap, dma_fence_unwrap)
|
2021-09-24 23:10:19 +08:00
|
|
|
selftest(dma_resv, dma_resv)
|