From: Dave Young Date: Tue, 18 Dec 2012 00:04:47 +0000 (-0800) Subject: kcmp selftests: make run_tests fix X-Git-Tag: v6.6-pxa1908~26407^2~13 X-Git-Url: https://git.dujemihanovic.xyz/?a=commitdiff_plain;h=63d233673a9f6c524969e40e7012e3e461aafd32;p=linux.git kcmp selftests: make run_tests fix make run_tests need the target is run_tests instead of run-tests Also gcc output should be kcmp_test. Fix these two issues. Signed-off-by: Dave Young Cc: Pekka Enberg Cc: Cyrill Gorcunov Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/tools/testing/selftests/kcmp/Makefile b/tools/testing/selftests/kcmp/Makefile index dc79b86ea65c..c608945a0ef5 100644 --- a/tools/testing/selftests/kcmp/Makefile +++ b/tools/testing/selftests/kcmp/Makefile @@ -16,12 +16,12 @@ CFLAGS += -I../../../../arch/x86/include/ all: ifeq ($(ARCH),X86) - gcc $(CFLAGS) kcmp_test.c -o run_test + gcc $(CFLAGS) kcmp_test.c -o kcmp_test else echo "Not an x86 target, can't build kcmp selftest" endif -run-tests: all +run_tests: all ./kcmp_test clean: