Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f467f714 authored by Frederic Weisbecker's avatar Frederic Weisbecker Committed by Linus Torvalds
Browse files

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: default avatarFrederic Weisbecker <fweisbec@gmail.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Christoph Lameter <cl@linux.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0fc9d104
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -5,6 +5,11 @@ all:
		make -C $$TARGET; \
	done;

run_tests:
	for TARGET in $(TARGETS); do \
		make -C $$TARGET run_tests; \
	done;

clean:
	for TARGET in $(TARGETS); do \
		make -C $$TARGET clean; \
+5 −2
Original line number Diff line number Diff line
@@ -11,10 +11,13 @@ endif

all:
ifeq ($(ARCH),x86)
	gcc breakpoint_test.c -o run_test
	gcc breakpoint_test.c -o breakpoint_test
else
	echo "Not an x86 target, can't build breakpoints selftests"
endif

run_tests:
	./breakpoint_test

clean:
	rm -fr run_test
	rm -fr breakpoint_test

tools/testing/selftests/run_tests

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
#!/bin/bash

TARGETS=breakpoints

for TARGET in $TARGETS
do
	$TARGET/run_test
done