Lines Matching refs:module
5 * If you want to run a vendor module KUnit tests, please run the tests with a
33 Load and run a test module on Android device manually
34 * Push the KUnit test framework module kunit.ko over to the device. For
39 * Load test module on device:
47 * Push the KUnit test module over to the device. For example using adb:
53 * Load test module on device:
110 1. Test module fails to load.
116 Check the test module dependency with `modinfo <module_name>.ko` on your local
118 All dependent modules need to be installed before the test module can be
121 Check if the module is already installed with `adb shell lsmod`. The `adb shell
122 rmmod` can be used to remove the already installed test module, and installing
123 the test module again will trigger the test rerun.
125 `adb shell lsmod` will also show the module dependency for your test module in
126 the `Used by` column. You can not remove a module with `adb shell rmmod` if it
127 is being used by another module. Other modules that are using it need to be
130 2. Test module loaded but no test results