Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <juntong.deng@outlook.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Juntong Deng and committed by
Shuah Khan
6f874fa0 8ed99af4

+1 -1
+1 -1
tools/testing/selftests/Makefile
··· 92 92 TARGETS += tmpfs 93 93 TARGETS += tpm2 94 94 TARGETS += tty 95 - TARGETS += uevents 95 + TARGETS += uevent 96 96 TARGETS += user 97 97 TARGETS += user_events 98 98 TARGETS += vDSO