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>
This commit is contained in:
Maxime Ripard 2026-02-24 12:03:10 +01:00
parent 4827d6d83f
commit 5ea5b6ff0d
No known key found for this signature in database
GPG Key ID: 275FCE19A23DBE76
2 changed files with 3 additions and 3 deletions

View File

@ -421,7 +421,7 @@ static void drm_sched_change_priority(struct kunit *test)
static struct kunit_case drm_sched_priority_tests[] = {
KUNIT_CASE(drm_sched_priorities),
KUNIT_CASE(drm_sched_change_priority),
KUNIT_CASE_SLOW(drm_sched_change_priority),
{}
};
@ -546,7 +546,7 @@ static void drm_sched_test_credits(struct kunit *test)
}
static struct kunit_case drm_sched_credits_tests[] = {
KUNIT_CASE(drm_sched_test_credits),
KUNIT_CASE_SLOW(drm_sched_test_credits),
{}
};

View File

@ -910,7 +910,7 @@ static struct kunit_case gpu_buddy_tests[] = {
KUNIT_CASE(gpu_test_buddy_alloc_contiguous),
KUNIT_CASE(gpu_test_buddy_alloc_clear),
KUNIT_CASE(gpu_test_buddy_alloc_range_bias),
KUNIT_CASE(gpu_test_buddy_fragmentation_performance),
KUNIT_CASE_SLOW(gpu_test_buddy_fragmentation_performance),
KUNIT_CASE(gpu_test_buddy_alloc_exceeds_max_order),
{}
};