Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.4 35 lines 1.6 kB view raw
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 */ 12selftest(sanitycheck, i915_live_sanitycheck) /* keep first (igt selfcheck) */ 13selftest(uncore, intel_uncore_live_selftests) 14selftest(workarounds, intel_workarounds_live_selftests) 15selftest(gt_engines, intel_engine_live_selftests) 16selftest(gt_timelines, intel_timeline_live_selftests) 17selftest(gt_contexts, intel_context_live_selftests) 18selftest(requests, i915_request_live_selftests) 19selftest(active, i915_active_live_selftests) 20selftest(objects, i915_gem_object_live_selftests) 21selftest(mman, i915_gem_mman_live_selftests) 22selftest(dmabuf, i915_gem_dmabuf_live_selftests) 23selftest(vma, i915_vma_live_selftests) 24selftest(coherency, i915_gem_coherency_live_selftests) 25selftest(gtt, i915_gem_gtt_live_selftests) 26selftest(gem, i915_gem_live_selftests) 27selftest(evict, i915_gem_evict_live_selftests) 28selftest(hugepages, i915_gem_huge_page_live_selftests) 29selftest(gem_contexts, i915_gem_context_live_selftests) 30selftest(blt, i915_gem_object_blt_live_selftests) 31selftest(client, i915_gem_client_blt_live_selftests) 32selftest(reset, intel_reset_live_selftests) 33selftest(hangcheck, intel_hangcheck_live_selftests) 34selftest(execlists, intel_execlists_live_selftests) 35selftest(guc, intel_guc_live_selftest)