f467f71403
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>
24 lines
425 B
Makefile
24 lines
425 B
Makefile
# Taken from perf makefile
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
|
|
ifeq ($(ARCH),i386)
|
|
ARCH := x86
|
|
endif
|
|
ifeq ($(ARCH),x86_64)
|
|
ARCH := x86
|
|
endif
|
|
|
|
|
|
all:
|
|
ifeq ($(ARCH),x86)
|
|
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 breakpoint_test
|