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

selftests: launch individual selftests from the main Makefile

Remove the run_tests script and launch the selftests by calling "make
run_tests" from the selftests top directory instead. This delegates to
the Makefile in each selftest directory, where it is decided how to launch
the local test.

This removes the need to add each selftest directory to the now removed
"run_tests" top script.

Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Christoph Lameter <cl@linux.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Frederic Weisbecker and committed by
Linus Torvalds
f467f714 0fc9d104

+10 -10
+5
tools/testing/selftests/Makefile
··· 5 5 make -C $$TARGET; \ 6 6 done; 7 7 8 + run_tests: 9 + for TARGET in $(TARGETS); do \ 10 + make -C $$TARGET run_tests; \ 11 + done; 12 + 8 13 clean: 9 14 for TARGET in $(TARGETS); do \ 10 15 make -C $$TARGET clean; \
+5 -2
tools/testing/selftests/breakpoints/Makefile
··· 11 11 12 12 all: 13 13 ifeq ($(ARCH),x86) 14 - gcc breakpoint_test.c -o run_test 14 + gcc breakpoint_test.c -o breakpoint_test 15 15 else 16 16 echo "Not an x86 target, can't build breakpoints selftests" 17 17 endif 18 18 19 + run_tests: 20 + ./breakpoint_test 21 + 19 22 clean: 20 - rm -fr run_test 23 + rm -fr breakpoint_test
-8
tools/testing/selftests/run_tests
··· 1 - #!/bin/bash 2 - 3 - TARGETS=breakpoints 4 - 5 - for TARGET in $TARGETS 6 - do 7 - $TARGET/run_test 8 - done