i915_live_selftests.h 870 B

12345678910111213141516171819
  1. /* List each unit test as selftest(name, function)
  2. *
  3. * The name is used as both an enum and expanded as subtest__name to create
  4. * a module parameter. It must be unique and legal for a C identifier.
  5. *
  6. * The function should be of type int function(void). It may be conditionally
  7. * compiled using #if IS_ENABLED(DRM_I915_SELFTEST).
  8. *
  9. * Tests are executed in order by igt/drv_selftest
  10. */
  11. selftest(sanitycheck, i915_live_sanitycheck) /* keep first (igt selfcheck) */
  12. selftest(uncore, intel_uncore_live_selftests)
  13. selftest(requests, i915_gem_request_live_selftests)
  14. selftest(objects, i915_gem_object_live_selftests)
  15. selftest(dmabuf, i915_gem_dmabuf_live_selftests)
  16. selftest(coherency, i915_gem_coherency_live_selftests)
  17. selftest(gtt, i915_gem_gtt_live_selftests)
  18. selftest(contexts, i915_gem_context_live_selftests)
  19. selftest(hangcheck, intel_hangcheck_live_selftests)