drm_mm_selftests.h 812 B

1234567891011121314151617181920212223
  1. /* List each unit test as selftest(name, function)
  2. *
  3. * The name is used as both an enum and expanded as igt__name to create
  4. * a module parameter. It must be unique and legal for a C identifier.
  5. *
  6. * Tests are executed in order by igt/drm_mm
  7. */
  8. selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
  9. selftest(init, igt_init)
  10. selftest(debug, igt_debug)
  11. selftest(reserve, igt_reserve)
  12. selftest(insert, igt_insert)
  13. selftest(replace, igt_replace)
  14. selftest(insert_range, igt_insert_range)
  15. selftest(align, igt_align)
  16. selftest(align32, igt_align32)
  17. selftest(align64, igt_align64)
  18. selftest(evict, igt_evict)
  19. selftest(evict_range, igt_evict_range)
  20. selftest(topdown, igt_topdown)
  21. selftest(color, igt_color)
  22. selftest(color_evict, igt_color_evict)
  23. selftest(color_evict_range, igt_color_evict_range)