License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / drivers / gpu / drm / i915 / selftests / i915_live_selftests.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
953c7f82
CW
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 */
12selftest(sanitycheck, i915_live_sanitycheck) /* keep first (igt selfcheck) */
26e7a2a1 13selftest(uncore, intel_uncore_live_selftests)
b348090d 14selftest(requests, i915_gem_request_live_selftests)
12d30d87 15selftest(objects, i915_gem_object_live_selftests)
ced01afd 16selftest(dmabuf, i915_gem_dmabuf_live_selftests)
17059450 17selftest(coherency, i915_gem_coherency_live_selftests)
1c42819a 18selftest(gtt, i915_gem_gtt_live_selftests)
791ff39a 19selftest(contexts, i915_gem_context_live_selftests)
496b575e 20selftest(hangcheck, intel_hangcheck_live_selftests)