drm_mm_selftests.h 884 B

1234567891011121314151617181920212223242526
  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 igt__name to create
  5. * a module parameter. It must be unique and legal for a C identifier.
  6. *
  7. * Tests are executed in order by igt/drm_mm
  8. */
  9. selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
  10. selftest(init, igt_init)
  11. selftest(debug, igt_debug)
  12. selftest(reserve, igt_reserve)
  13. selftest(insert, igt_insert)
  14. selftest(replace, igt_replace)
  15. selftest(insert_range, igt_insert_range)
  16. selftest(align, igt_align)
  17. selftest(align32, igt_align32)
  18. selftest(align64, igt_align64)
  19. selftest(evict, igt_evict)
  20. selftest(evict_range, igt_evict_range)
  21. selftest(bottomup, igt_bottomup)
  22. selftest(topdown, igt_topdown)
  23. selftest(color, igt_color)
  24. selftest(color_evict, igt_color_evict)
  25. selftest(color_evict_range, igt_color_evict_range)