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.

drm/tests: Mark slow tests as slow

Some DRM tests cross the 1s execution time threshold that defines a test
as slow. Let's flag them as such.

Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patch.msgid.link/20260224110310.1854608-1-mripard@kernel.org
Signed-off-by: Maxime Ripard <mripard@kernel.org>

+3 -3
+2 -2
drivers/gpu/drm/scheduler/tests/tests_basic.c
··· 421 421 422 422 static struct kunit_case drm_sched_priority_tests[] = { 423 423 KUNIT_CASE(drm_sched_priorities), 424 - KUNIT_CASE(drm_sched_change_priority), 424 + KUNIT_CASE_SLOW(drm_sched_change_priority), 425 425 {} 426 426 }; 427 427 ··· 546 546 } 547 547 548 548 static struct kunit_case drm_sched_credits_tests[] = { 549 - KUNIT_CASE(drm_sched_test_credits), 549 + KUNIT_CASE_SLOW(drm_sched_test_credits), 550 550 {} 551 551 }; 552 552
+1 -1
drivers/gpu/tests/gpu_buddy_test.c
··· 910 910 KUNIT_CASE(gpu_test_buddy_alloc_contiguous), 911 911 KUNIT_CASE(gpu_test_buddy_alloc_clear), 912 912 KUNIT_CASE(gpu_test_buddy_alloc_range_bias), 913 - KUNIT_CASE(gpu_test_buddy_fragmentation_performance), 913 + KUNIT_CASE_SLOW(gpu_test_buddy_fragmentation_performance), 914 914 KUNIT_CASE(gpu_test_buddy_alloc_exceeds_max_order), 915 915 {} 916 916 };