]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - tools/testing/selftests/Makefile
Merge branch 'akpm-current/current'
[karo-tx-linux.git] / tools / testing / selftests / Makefile
1 TARGETS = breakpoints
2 TARGETS += cpu-hotplug
3 TARGETS += efivarfs
4 TARGETS += exec
5 TARGETS += firmware
6 TARGETS += ftrace
7 TARGETS += futex
8 TARGETS += kcmp
9 TARGETS += lib
10 TARGETS += membarrier
11 TARGETS += memfd
12 TARGETS += memory-hotplug
13 TARGETS += mount
14 TARGETS += mqueue
15 TARGETS += net
16 TARGETS += powerpc
17 TARGETS += pstore
18 TARGETS += ptrace
19 TARGETS += seccomp
20 TARGETS += size
21 TARGETS += static_keys
22 TARGETS += sysctl
23 ifneq (1, $(quicktest))
24 TARGETS += timers
25 endif
26 TARGETS += user
27 TARGETS += vm
28 TARGETS += x86
29 TARGETS += zram
30 #Please keep the TARGETS list alphabetically sorted
31 # Run "make quicktest=1 run_tests" or
32 # "make quicktest=1 kselftest from top level Makefile
33
34 TARGETS_HOTPLUG = cpu-hotplug
35 TARGETS_HOTPLUG += memory-hotplug
36
37 # Clear LDFLAGS and MAKEFLAGS if called from main
38 # Makefile to avoid test build failures when test
39 # Makefile doesn't have explicit build rules.
40 ifeq (1,$(MAKELEVEL))
41 override LDFLAGS =
42 override MAKEFLAGS =
43 endif
44
45 all:
46         for TARGET in $(TARGETS); do \
47                 make -C $$TARGET; \
48         done;
49
50 run_tests: all
51         for TARGET in $(TARGETS); do \
52                 make -C $$TARGET run_tests; \
53         done;
54
55 hotplug:
56         for TARGET in $(TARGETS_HOTPLUG); do \
57                 make -C $$TARGET; \
58         done;
59
60 run_hotplug: hotplug
61         for TARGET in $(TARGETS_HOTPLUG); do \
62                 make -C $$TARGET run_full_test; \
63         done;
64
65 clean_hotplug:
66         for TARGET in $(TARGETS_HOTPLUG); do \
67                 make -C $$TARGET clean; \
68         done;
69
70 run_pstore_crash:
71         make -C pstore run_crash
72
73 INSTALL_PATH ?= install
74 INSTALL_PATH := $(abspath $(INSTALL_PATH))
75 ALL_SCRIPT := $(INSTALL_PATH)/run_kselftest.sh
76
77 install:
78 ifdef INSTALL_PATH
79         @# Ask all targets to install their files
80         mkdir -p $(INSTALL_PATH)
81         for TARGET in $(TARGETS); do \
82                 make -C $$TARGET INSTALL_PATH=$(INSTALL_PATH)/$$TARGET install; \
83         done;
84
85         @# Ask all targets to emit their test scripts
86         echo "#!/bin/bash" > $(ALL_SCRIPT)
87         echo "cd \$$(dirname \$$0)" >> $(ALL_SCRIPT)
88         echo "ROOT=\$$PWD" >> $(ALL_SCRIPT)
89
90         for TARGET in $(TARGETS); do \
91                 echo "echo ; echo Running tests in $$TARGET" >> $(ALL_SCRIPT); \
92                 echo "echo ========================================" >> $(ALL_SCRIPT); \
93                 echo "cd $$TARGET" >> $(ALL_SCRIPT); \
94                 make -s --no-print-directory -C $$TARGET emit_tests >> $(ALL_SCRIPT); \
95                 echo "cd \$$ROOT" >> $(ALL_SCRIPT); \
96         done;
97
98         chmod u+x $(ALL_SCRIPT)
99 else
100         $(error Error: set INSTALL_PATH to use install)
101 endif
102
103 clean:
104         for TARGET in $(TARGETS); do \
105                 make -C $$TARGET clean; \
106         done;
107
108 .PHONY: install