Merge branch 'irq-irqdomain-arm-for-linus' of git://git.kernel.org/pub/scm/linux...
[cascardo/linux.git] / tools / testing / selftests / Makefile
1 TARGETS = breakpoints
2 TARGETS += cpu-hotplug
3 TARGETS += efivarfs
4 TARGETS += kcmp
5 TARGETS += memfd
6 TARGETS += memory-hotplug
7 TARGETS += mqueue
8 TARGETS += mount
9 TARGETS += net
10 TARGETS += ptrace
11 TARGETS += timers
12 TARGETS += vm
13 TARGETS += powerpc
14 TARGETS += user
15 TARGETS += sysctl
16 TARGETS += firmware
17 TARGETS += ftrace
18 TARGETS += exec
19
20 TARGETS_HOTPLUG = cpu-hotplug
21 TARGETS_HOTPLUG += memory-hotplug
22
23 all:
24         for TARGET in $(TARGETS); do \
25                 make -C $$TARGET; \
26         done;
27
28 run_tests: all
29         for TARGET in $(TARGETS); do \
30                 make -C $$TARGET run_tests; \
31         done;
32
33 hotplug:
34         for TARGET in $(TARGETS_HOTPLUG); do \
35                 make -C $$TARGET; \
36         done;
37
38 run_hotplug: hotplug
39         for TARGET in $(TARGETS_HOTPLUG); do \
40                 make -C $$TARGET run_full_test; \
41         done;
42
43 clean_hotplug:
44         for TARGET in $(TARGETS_HOTPLUG); do \
45                 make -C $$TARGET clean; \
46         done;
47
48 clean:
49         for TARGET in $(TARGETS); do \
50                 make -C $$TARGET clean; \
51         done;