mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

v2: mock test page support configurations and add MI_STORE_DWORD test v3: run all mockable huge page tests on all platforms via the mock_device v4: add pin_update regression test various improvements suggested by Chris v5: fix issues reported by kbuild test single sg spanning multiple page sizes don't explode when running the live-tests through the appgtt v6: lots of improvements from Chris v7: run on each engine for igt_write_huge add simple tmpfs fallback test v8: size_t is bad don't break the i386 build Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20171006145041.21673-18-matthew.auld@intel.com Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20171006221833.32439-17-chris@chris-wilson.co.uk
24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* 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
|
|
* compiled using #if IS_ENABLED(DRM_I915_SELFTEST).
|
|
*
|
|
* Tests are executed in order by igt/drv_selftest
|
|
*/
|
|
selftest(sanitycheck, i915_mock_sanitycheck) /* keep first (igt selfcheck) */
|
|
selftest(fence, i915_sw_fence_mock_selftests)
|
|
selftest(scatterlist, scatterlist_mock_selftests)
|
|
selftest(syncmap, i915_syncmap_mock_selftests)
|
|
selftest(uncore, intel_uncore_mock_selftests)
|
|
selftest(breadcrumbs, intel_breadcrumbs_mock_selftests)
|
|
selftest(timelines, i915_gem_timeline_mock_selftests)
|
|
selftest(requests, i915_gem_request_mock_selftests)
|
|
selftest(objects, i915_gem_object_mock_selftests)
|
|
selftest(dmabuf, i915_gem_dmabuf_mock_selftests)
|
|
selftest(vma, i915_vma_mock_selftests)
|
|
selftest(evict, i915_gem_evict_mock_selftests)
|
|
selftest(gtt, i915_gem_gtt_mock_selftests)
|
|
selftest(hugepages, i915_gem_huge_page_mock_selftests)
|