diff options
author | Antonio Terceiro <[email protected]> | 2021-02-24 10:06:05 -0300 |
---|---|---|
committer | Shuah Khan <[email protected]> | 2021-04-02 16:17:18 -0600 |
commit | 87f1c20e2effd0a0b7e34b0b3bc06821425e1562 (patch) | |
tree | ad66e48b629cfe2b141d1c74d1acbaef5e150993 | |
parent | 4808bf209efd586512e31590f19c1affbe56980e (diff) |
Documentation: kselftest: fix path to test module files
The top-level kselftest directory is not called kselftest, but
selftests.
Signed-off-by: Antonio Terceiro <[email protected]>
Cc: Shuah Khan <[email protected]>
Cc: Jonathan Corbet <[email protected]>
Signed-off-by: Shuah Khan <[email protected]>
-rw-r--r-- | Documentation/dev-tools/kselftest.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/dev-tools/kselftest.rst b/Documentation/dev-tools/kselftest.rst index a901def730d9..dcefee707ccd 100644 --- a/Documentation/dev-tools/kselftest.rst +++ b/Documentation/dev-tools/kselftest.rst @@ -239,8 +239,8 @@ using a shell script test runner. ``kselftest/module.sh`` is designed to facilitate this process. There is also a header file provided to assist writing kernel modules that are for use with kselftest: -- ``tools/testing/kselftest/kselftest_module.h`` -- ``tools/testing/kselftest/kselftest/module.sh`` +- ``tools/testing/selftests/kselftest_module.h`` +- ``tools/testing/selftests/kselftest/module.sh`` How to use ---------- |