Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* List each unit test as selftest(name, function)
0003  *
0004  * The name is used as both an enum and expanded as igt__name to create
0005  * a module parameter. It must be unique and legal for a C identifier.
0006  *
0007  * Tests are executed in order by igt/drm_mm
0008  */
0009 selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
0010 selftest(init, igt_init)
0011 selftest(debug, igt_debug)
0012 selftest(reserve, igt_reserve)
0013 selftest(insert, igt_insert)
0014 selftest(replace, igt_replace)
0015 selftest(insert_range, igt_insert_range)
0016 selftest(align, igt_align)
0017 selftest(frag, igt_frag)
0018 selftest(align32, igt_align32)
0019 selftest(align64, igt_align64)
0020 selftest(evict, igt_evict)
0021 selftest(evict_range, igt_evict_range)
0022 selftest(bottomup, igt_bottomup)
0023 selftest(lowest, igt_lowest)
0024 selftest(topdown, igt_topdown)
0025 selftest(highest, igt_highest)
0026 selftest(color, igt_color)
0027 selftest(color_evict, igt_color_evict)
0028 selftest(color_evict_range, igt_color_evict_range)