mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
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 <dyoung@redhat.com> Cc: Pekka Enberg <penberg@kernel.org> Cc: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
aabccae6e9
commit
63d233673a
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue