cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

drm_mm_selftests.h (969B)


      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 */
      9selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
     10selftest(init, igt_init)
     11selftest(debug, igt_debug)
     12selftest(reserve, igt_reserve)
     13selftest(insert, igt_insert)
     14selftest(replace, igt_replace)
     15selftest(insert_range, igt_insert_range)
     16selftest(align, igt_align)
     17selftest(frag, igt_frag)
     18selftest(align32, igt_align32)
     19selftest(align64, igt_align64)
     20selftest(evict, igt_evict)
     21selftest(evict_range, igt_evict_range)
     22selftest(bottomup, igt_bottomup)
     23selftest(lowest, igt_lowest)
     24selftest(topdown, igt_topdown)
     25selftest(highest, igt_highest)
     26selftest(color, igt_color)
     27selftest(color_evict, igt_color_evict)
     28selftest(color_evict_range, igt_color_evict_range)