diff options
| author | Juntong Deng <[email protected]> | 2023-09-26 18:03:23 +0000 |
|---|---|---|
| committer | Shuah Khan <[email protected]> | 2023-09-27 00:47:37 +0000 |
| commit | 6f874fa021dfc7bf37f4f37da3a5aaa41fe9c39c (patch) | |
| tree | 65f14341d6f951f9fffa623982758408208411a0 | |
| parent | selftests/user_events: Fix to unmount tracefs when test created mount (diff) | |
| download | kernel-6f874fa021dfc7bf37f4f37da3a5aaa41fe9c39c.tar.gz kernel-6f874fa021dfc7bf37f4f37da3a5aaa41fe9c39c.zip | |
selftests: Fix wrong TARGET in kselftest top level Makefile
The 'uevents' subdirectory does not exist in tools/testing/selftests/
and adding 'uevents' to the TARGETS list results in the following error:
make[1]: Entering directory 'xx/tools/testing/selftests/uevents'
make[1]: *** No targets specified and no makefile found. Stop.
make[1]: Leaving directory 'xx/tools/testing/selftests/uevents'
What actually exists in tools/testing/selftests/ is the 'uevent'
subdirectory.
Signed-off-by: Juntong Deng <[email protected]>
Signed-off-by: Shuah Khan <[email protected]>
| -rw-r--r-- | tools/testing/selftests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index 42806add0114..1a21d6beebc6 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -92,7 +92,7 @@ endif TARGETS += tmpfs TARGETS += tpm2 TARGETS += tty -TARGETS += uevents +TARGETS += uevent TARGETS += user TARGETS += user_events TARGETS += vDSO |
