]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/i915/selftests/i915_mock_selftests.h
Merge remote-tracking branches 'asoc/topic/max98925', 'asoc/topic/max98927', 'asoc...
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / selftests / i915_mock_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_mock_sanitycheck) /* keep first (igt selfcheck) */
13 selftest(fence, i915_sw_fence_mock_selftests)
14 selftest(scatterlist, scatterlist_mock_selftests)
15 selftest(syncmap, i915_syncmap_mock_selftests)
16 selftest(uncore, intel_uncore_mock_selftests)
17 selftest(breadcrumbs, intel_breadcrumbs_mock_selftests)
18 selftest(timelines, i915_gem_timeline_mock_selftests)
19 selftest(requests, i915_gem_request_mock_selftests)
20 selftest(objects, i915_gem_object_mock_selftests)
21 selftest(dmabuf, i915_gem_dmabuf_mock_selftests)
22 selftest(vma, i915_vma_mock_selftests)
23 selftest(evict, i915_gem_evict_mock_selftests)
24 selftest(gtt, i915_gem_gtt_mock_selftests)