diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2013-08-06 03:42:35 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-08-14 00:57:03 -0400 |
commit | 0e56dacdda49940ff6e24e504f11468a27922416 (patch) | |
tree | 4a94ce0779354aad53f5d04c04cd6bbfbc29a38a /tools | |
parent | 39fd40274d1f3a52152ae6fc22f428d93f1a8363 (diff) |
selftests: Add infrastructure for powerpc selftests
This commit adds a powerpc subdirectory to tools/testing/selftests,
for tests that are powerpc specific.
On other architectures nothing is built. The makefile supports cross
compilation if the user sets ARCH and CROSS_COMPILE.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/Makefile | 1 | ||||
-rw-r--r-- | tools/testing/selftests/powerpc/Makefile | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index 4cb14cae3791..9f3eae290900 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile | |||
@@ -8,6 +8,7 @@ TARGETS += net | |||
8 | TARGETS += ptrace | 8 | TARGETS += ptrace |
9 | TARGETS += timers | 9 | TARGETS += timers |
10 | TARGETS += vm | 10 | TARGETS += vm |
11 | TARGETS += powerpc | ||
11 | 12 | ||
12 | all: | 13 | all: |
13 | for TARGET in $(TARGETS); do \ | 14 | for TARGET in $(TARGETS); do \ |
diff --git a/tools/testing/selftests/powerpc/Makefile b/tools/testing/selftests/powerpc/Makefile new file mode 100644 index 000000000000..b315740e4cd9 --- /dev/null +++ b/tools/testing/selftests/powerpc/Makefile | |||
@@ -0,0 +1,39 @@ | |||
1 | # Makefile for powerpc selftests | ||
2 | |||
3 | # ARCH can be overridden by the user for cross compiling | ||
4 | ARCH ?= $(shell uname -m) | ||
5 | ARCH := $(shell echo $(ARCH) | sed -e s/ppc.*/powerpc/) | ||
6 | |||
7 | ifeq ($(ARCH),powerpc) | ||
8 | |||
9 | GIT_VERSION = $(shell git describe --always --long --dirty || echo "unknown") | ||
10 | |||
11 | CC := $(CROSS_COMPILE)$(CC) | ||
12 | CFLAGS := -Wall -O2 -flto -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CURDIR) $(CFLAGS) | ||
13 | |||
14 | export CC CFLAGS | ||
15 | |||
16 | TARGETS = | ||
17 | |||
18 | endif | ||
19 | |||
20 | all: | ||
21 | @for TARGET in $(TARGETS); do \ | ||
22 | $(MAKE) -C $$TARGET all; \ | ||
23 | done; | ||
24 | |||
25 | run_tests: all | ||
26 | @for TARGET in $(TARGETS); do \ | ||
27 | $(MAKE) -C $$TARGET run_tests; \ | ||
28 | done; | ||
29 | |||
30 | clean: | ||
31 | @for TARGET in $(TARGETS); do \ | ||
32 | $(MAKE) -C $$TARGET clean; \ | ||
33 | done; | ||
34 | rm -f tags | ||
35 | |||
36 | tags: | ||
37 | find . -name '*.c' -o -name '*.h' | xargs ctags | ||
38 | |||
39 | .PHONY: all run_tests clean tags | ||