diff options
author | Kees Cook <keescook@chromium.org> | 2019-10-30 22:45:36 +0300 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2019-11-08 00:46:08 +0300 |
commit | c78fd76f2b673d1fb5306612c87df812c0a9ad0c (patch) | |
tree | c15f4a34d3100d09a308d2247bb57ee8c3c5fd33 /tools/testing/selftests/lib/bitmap.sh | |
parent | ea1bf0bb18c0bd627d7b551196453ff2fff44225 (diff) | |
download | linux-c78fd76f2b673d1fb5306612c87df812c0a9ad0c.tar.xz |
selftests: Move kselftest_module.sh into kselftest/
The kselftest_module.sh file was not being installed by the Makefile
"install" target, rendering the lib/*.sh tests nonfunction. This fixes
that and takes the opportunity to move it into the kselftest/ subdirectory
which is where the kselftest infrastructure bits are collecting.
Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Link: https://lore.kernel.org/lkml/CA+G9fYsfJpXQvOvHdjtg8z4a89dSStOQZOKa9zMjjQgWKng1aw@mail.gmail.com
Fixes: d3460527706e ("kselftest: Add test runner creation script")
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/lib/bitmap.sh')
-rwxr-xr-x | tools/testing/selftests/lib/bitmap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/lib/bitmap.sh b/tools/testing/selftests/lib/bitmap.sh index 5511dddc5c2d..00a416fbc0ef 100755 --- a/tools/testing/selftests/lib/bitmap.sh +++ b/tools/testing/selftests/lib/bitmap.sh @@ -1,3 +1,3 @@ #!/bin/sh # SPDX-License-Identifier: GPL-2.0 -$(dirname $0)/../kselftest_module.sh "bitmap" test_bitmap +$(dirname $0)/../kselftest/module.sh "bitmap" test_bitmap |