Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.14 25 lines 884 B view raw
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(align32, igt_align32) 18selftest(align64, igt_align64) 19selftest(evict, igt_evict) 20selftest(evict_range, igt_evict_range) 21selftest(bottomup, igt_bottomup) 22selftest(topdown, igt_topdown) 23selftest(color, igt_color) 24selftest(color_evict, igt_color_evict) 25selftest(color_evict_range, igt_color_evict_range)