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.

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 <ynaffit@google.com>
Signed-off-by: Carlos Llamas <cmllamas@google.com>
Reviewed-by: Tiffany Yang <ynaffit@google.com>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Link: https://patch.msgid.link/20251024161525.1732874-1-cmllamas@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Carlos Llamas and committed by
Greg Kroah-Hartman
a1fb84ab d54d5e29

+1 -1
+1 -1
drivers/android/tests/binder_alloc_kunit.c
··· 554 554 static struct kunit_case binder_alloc_test_cases[] = { 555 555 KUNIT_CASE(binder_alloc_test_init_freelist), 556 556 KUNIT_CASE(binder_alloc_test_mmap), 557 - KUNIT_CASE(binder_alloc_exhaustive_test), 557 + KUNIT_CASE_SLOW(binder_alloc_exhaustive_test), 558 558 {} 559 559 }; 560 560