From eaa8ddfc6014ecbf3a2d80b7d5c964c9a98453e7 Mon Sep 17 00:00:00 2001 From: Yongqin Liu Date: Thu, 14 Nov 2024 21:40:25 +0800 Subject: [PATCH] ANDROID: Update kunit README with correct kunit-example-test.ko name The name in the kernel source is kunit-example-test, there is no kunit-test-example defined Fixes: df08ef10446e ("ANDROID: Add Android KUnit README") Change-Id: I20b89b5c11ede45ef1b758c722b8bfca13e9c782 Signed-off-by: Yongqin Liu --- tools/testing/kunit/android/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/testing/kunit/android/README b/tools/testing/kunit/android/README index 080b9fbd8df0..2b5e2ccde24e 100644 --- a/tools/testing/kunit/android/README +++ b/tools/testing/kunit/android/README @@ -38,14 +38,14 @@ Load and run a test module on Android device manually $ insmod kunit.ko enable=1 * Push the KUnit test module over to the device. For example using adb: - $ adb push kunit-test-example.ko /data + $ adb push kunit-example-test.ko /data * (Optional) - Mount debugfs on device: $ mount -t debugfs debugfs /sys/kernel/debug * Load test module on device: $ cd /data - $ insmod kunit-test-example.ko + $ insmod kunit-example-test.ko View test results * If debugfs is mounted: