linux-kselftest.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] binder: Set up KUnit tests for alloc
@ 2025-06-27 20:37 Tiffany Yang
  2025-06-27 20:37 ` [PATCH 1/5] binder: Fix selftest page indexing Tiffany Yang
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Tiffany Yang @ 2025-06-27 20:37 UTC (permalink / raw)
  To: linux-kernel
  Cc: keescook, kernel-team, Greg Kroah-Hartman,
	Arve Hjønnevåg, Todd Kjos, Martijn Coenen,
	Joel Fernandes, Christian Brauner, Carlos Llamas,
	Suren Baghdasaryan, Brendan Higgins, David Gow, Rae Moar,
	linux-kselftest, kunit-dev

Hello,

binder_alloc_selftest provides a robust set of checks for the binder allocator,
but it rarely runs because it must hook into a running binder process and block
all other binder threads until it completes. The test itself is a good candidate
for conversion to KUnit, and it can be further isolated from user processes by
using a test-specific lru freelist instead of the global one. This series
converts the selftest to KUnit to make it less burdensome to run and to set up a
foundation for testing future binder_alloc changes.

Thanks,
Tiffany

Tiffany Yang (5):
  binder: Fix selftest page indexing
  binder: Store lru freelist in binder_alloc
  binder: Scaffolding for binder_alloc KUnit tests
  binder: Convert binder_alloc selftests to KUnit
  binder: encapsulate individual alloc test cases

 drivers/android/Kconfig                    |  15 +-
 drivers/android/Makefile                   |   2 +-
 drivers/android/binder.c                   |  10 +-
 drivers/android/binder_alloc.c             |  39 +-
 drivers/android/binder_alloc.h             |  14 +-
 drivers/android/binder_alloc_selftest.c    | 306 -----------
 drivers/android/binder_internal.h          |   4 +
 drivers/android/tests/.kunitconfig         |   3 +
 drivers/android/tests/Makefile             |   3 +
 drivers/android/tests/binder_alloc_kunit.c | 572 +++++++++++++++++++++
 include/kunit/test.h                       |  12 +
 lib/kunit/user_alloc.c                     |   4 +-
 12 files changed, 644 insertions(+), 340 deletions(-)
 delete mode 100644 drivers/android/binder_alloc_selftest.c
 create mode 100644 drivers/android/tests/.kunitconfig
 create mode 100644 drivers/android/tests/Makefile
 create mode 100644 drivers/android/tests/binder_alloc_kunit.c

-- 
2.50.0.727.gbf7dc18ff4-goog


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-07-01 19:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-27 20:37 [PATCH 0/5] binder: Set up KUnit tests for alloc Tiffany Yang
2025-06-27 20:37 ` [PATCH 1/5] binder: Fix selftest page indexing Tiffany Yang
2025-06-27 20:37 ` [PATCH 2/5] binder: Store lru freelist in binder_alloc Tiffany Yang
2025-06-27 20:37 ` [PATCH 3/5] binder: Scaffolding for binder_alloc KUnit tests Tiffany Yang
2025-07-01 19:37   ` Rae Moar
2025-06-27 20:37 ` [PATCH 4/5] binder: Convert binder_alloc selftests to KUnit Tiffany Yang
2025-06-28 10:59   ` kernel test robot
2025-06-27 20:37 ` [PATCH 5/5] binder: encapsulate individual alloc test cases Tiffany Yang
2025-06-28 11:52   ` kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).