diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-10-04 11:35:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-10-04 11:35:23 -0700 |
commit | ba7d997a2a29ee3fa766fee912c65796e0c21903 (patch) | |
tree | c44be7067061b79b080ab2ee03bf8b2e47e1288d /tools | |
parent | cbf3a2cb156a2c911d8f38d8247814b4c07f49a2 (diff) | |
parent | 6f874fa021dfc7bf37f4f37da3a5aaa41fe9c39c (diff) |
Merge tag 'linux-kselftest-fixes-6.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull kselftest fix from Shuah Khan:
"One single fix to Makefile to fix the incorrect TARGET name for uevent
test"
* tag 'linux-kselftest-fixes-6.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
selftests: Fix wrong TARGET in kselftest top level Makefile
Diffstat (limited to 'tools')
-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 |