From: Carlos Llamas Date: Fri, 24 Oct 2025 16:15:02 +0000 (+0000) Subject: binder: mark binder_alloc_exhaustive_test as slow X-Git-Tag: v6.19-rc1~65^2~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1fb84ab7b92e8e9df448a79e8c02b57c98b5141;p=thirdparty%2Fkernel%2Flinux.git binder: mark binder_alloc_exhaustive_test as slow The binder_alloc_exhaustive_test kunit test takes over 30s to complete and the kunit framework reports: # binder_alloc_exhaustive_test: Test should be marked slow (runtime: 33.842881934s) Mark the test as suggested to silence the warning. Cc: Tiffany Yang Signed-off-by: Carlos Llamas Reviewed-by: Tiffany Yang Reviewed-by: Alice Ryhl Link: https://patch.msgid.link/20251024161525.1732874-1-cmllamas@google.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/android/tests/binder_alloc_kunit.c b/drivers/android/tests/binder_alloc_kunit.c index 9b884d977f765..7f9cc003bbe3b 100644 --- a/drivers/android/tests/binder_alloc_kunit.c +++ b/drivers/android/tests/binder_alloc_kunit.c @@ -554,7 +554,7 @@ static void binder_alloc_test_exit(struct kunit *test) static struct kunit_case binder_alloc_test_cases[] = { KUNIT_CASE(binder_alloc_test_init_freelist), KUNIT_CASE(binder_alloc_test_mmap), - KUNIT_CASE(binder_alloc_exhaustive_test), + KUNIT_CASE_SLOW(binder_alloc_exhaustive_test), {} };