GNU Linux-libre 4.14.290-gnu1
[releases.git] / drivers / gpu / drm / i915 / selftests / i915_live_selftests.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* List each unit test as selftest(name, function)
3  *
4  * The name is used as both an enum and expanded as subtest__name to create
5  * a module parameter. It must be unique and legal for a C identifier.
6  *
7  * The function should be of type int function(void). It may be conditionally
8  * compiled using #if IS_ENABLED(DRM_I915_SELFTEST).
9  *
10  * Tests are executed in order by igt/drv_selftest
11  */
12 selftest(sanitycheck, i915_live_sanitycheck) /* keep first (igt selfcheck) */
13 selftest(uncore, intel_uncore_live_selftests)
14 selftest(requests, i915_gem_request_live_selftests)
15 selftest(objects, i915_gem_object_live_selftests)
16 selftest(dmabuf, i915_gem_dmabuf_live_selftests)
17 selftest(coherency, i915_gem_coherency_live_selftests)
18 selftest(gtt, i915_gem_gtt_live_selftests)
19 selftest(contexts, i915_gem_context_live_selftests)
20 selftest(hangcheck, intel_hangcheck_live_selftests)