Merge tag 'zynq-soc-for-v5.7' of https://github.com/Xilinx/linux-xlnx into arm/soc
[linux-block.git] / tools / testing / selftests / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
47a18c42 2TARGETS = android
313a4db7 3TARGETS += arm64
47a18c42 4TARGETS += bpf
5aa5bd14 5TARGETS += breakpoints
f4ecb322 6TARGETS += capabilities
84092dbc 7TARGETS += cgroup
de528723 8TARGETS += clone3
e66d5b67 9TARGETS += cpufreq
58c7be84 10TARGETS += cpu-hotplug
6edf2e37 11TARGETS += drivers/dma-buf
58c7be84 12TARGETS += efivarfs
96e869d8 13TARGETS += exec
ce290a19 14TARGETS += filesystems
75abec73 15TARGETS += filesystems/binderfs
f2728fe8 16TARGETS += filesystems/epoll
96e869d8
AM
17TARGETS += firmware
18TARGETS += ftrace
ecac1a75 19TARGETS += futex
22f6592b 20TARGETS += gpio
6320303f 21TARGETS += intel_pstate
7e722473 22TARGETS += ipc
e55c884e 23TARGETS += ir
66a01b96 24TARGETS += kcmp
c3c0e811 25TARGETS += kexec
783e9e51 26TARGETS += kvm
317dc34a 27TARGETS += lib
a2818ee4 28TARGETS += livepatch
46d1a0f0 29TARGETS += lkdtm
b6d97344 30TARGETS += membarrier
4f5ce5e8 31TARGETS += memfd
58c7be84 32TARGETS += memory-hotplug
db181ce0 33TARGETS += mount
96e869d8 34TARGETS += mqueue
a6f68034 35TARGETS += net
048d19d4 36TARGETS += net/mptcp
25d8bced 37TARGETS += netfilter
cda261f4 38TARGETS += networking/timestamping
6ad92bf6 39TARGETS += nsfs
575a0ae9 40TARGETS += pidfd
96e869d8 41TARGETS += powerpc
9cd65655 42TARGETS += proc
cc04a46f 43TARGETS += pstore
17afab1d 44TARGETS += ptrace
b28a10ae 45TARGETS += openat2
ccba8b64 46TARGETS += rseq
a12ab9e1 47TARGETS += rtc
c99ee51a 48TARGETS += seccomp
19fd2868 49TARGETS += sigaltstack
96e869d8 50TARGETS += size
3c545084 51TARGETS += sparc64
b8826e50 52TARGETS += splice
1087d019 53TARGETS += static_keys
82208160 54TARGETS += sync
96e869d8 55TARGETS += sysctl
61c57676 56TARGETS += timens
2278e5ed 57ifneq (1, $(quicktest))
0bc4b0cf 58TARGETS += timers
2278e5ed 59endif
a3322868 60TARGETS += tmpfs
6ea3dfe1 61TARGETS += tpm2
3e2a4c18 62TARGETS += user
96e869d8 63TARGETS += vm
3f705dfd 64TARGETS += x86
f21fb798 65TARGETS += zram
96e869d8 66#Please keep the TARGETS list alphabetically sorted
2278e5ed 67# Run "make quicktest=1 run_tests" or
c6a13faf 68# "make quicktest=1 kselftest" from top level Makefile
274343ad 69
ddddda9b
SK
70TARGETS_HOTPLUG = cpu-hotplug
71TARGETS_HOTPLUG += memory-hotplug
72
3a24f7f6
CM
73# User can optionally provide a TARGETS skiplist.
74SKIP_TARGETS ?=
75ifneq ($(SKIP_TARGETS),)
76 TMP := $(filter-out $(SKIP_TARGETS), $(TARGETS))
77 override TARGETS := $(TMP)
78endif
79
9d235a55
JB
80# User can set FORCE_TARGETS to 1 to require all targets to be successfully
81# built; make will fail if any of the targets cannot be built. If
82# FORCE_TARGETS is not set (the default), make will succeed if at least one
83# of the targets gets built.
84FORCE_TARGETS ?=
85
67d8712d
SK
86# Clear LDFLAGS and MAKEFLAGS if called from main
87# Makefile to avoid test build failures when test
88# Makefile doesn't have explicit build rules.
89ifeq (1,$(MAKELEVEL))
60df4642 90override LDFLAGS =
67d8712d
SK
91override MAKEFLAGS =
92endif
93
61c2018c
SK
94# Append kselftest to KBUILD_OUTPUT to avoid cluttering
95# KBUILD_OUTPUT with selftest objects and headers installed
96# by selftests Makefile or lib.mk.
051f278e 97ifdef building_out_of_srctree
52fd1d08
SK
98override LDFLAGS =
99endif
100
8ce72dc3 101ifneq ($(O),)
f60b85e8 102 BUILD := $(O)
8ce72dc3
SK
103else
104 ifneq ($(KBUILD_OUTPUT),)
f60b85e8 105 BUILD := $(KBUILD_OUTPUT)/kselftest
8ce72dc3
SK
106 else
107 BUILD := $(shell pwd)
108 DEFAULT_INSTALL_HDR_PATH := 1
109 endif
a8ba798b 110endif
111
8ce72dc3
SK
112# Prepare for headers install
113top_srcdir ?= ../../..
114include $(top_srcdir)/scripts/subarch.include
115ARCH ?= $(SUBARCH)
116export KSFT_KHDR_INSTALL_DONE := 1
a8ba798b 117export BUILD
8ce72dc3 118
d917fb87
SK
119# build and run gpio when output directory is the src dir.
120# gpio has dependency on tools/gpio and builds tools/gpio
121# objects in the src directory in all cases making the src
122# repo dirty even when objects are relocated.
123ifneq (1,$(DEFAULT_INSTALL_HDR_PATH))
124 TMP := $(filter-out gpio, $(TARGETS))
125 TARGETS := $(TMP)
126endif
127
8ce72dc3
SK
128# set default goal to all, so make without a target runs all, even when
129# all isn't the first target in the file.
130.DEFAULT_GOAL := all
131
132# Install headers here once for all tests. KSFT_KHDR_INSTALL_DONE
133# is used to avoid running headers_install from lib.mk.
134# Invoke headers install with --no-builtin-rules to avoid circular
135# dependency in "make kselftest" case. In this case, second level
136# make inherits builtin-rules which will use the rule generate
137# Makefile.o and runs into
138# "Circular Makefile.o <- prepare dependency dropped."
139# and headers_install fails and test compile fails.
140#
141# O= KBUILD_OUTPUT cases don't run into this error, since main Makefile
142# invokes them as sub-makes and --no-builtin-rules is not necessary,
143# but doesn't cause any failures. Keep it simple and use the same
144# flags in both cases.
145# Local build cases: "make kselftest", "make -C" - headers are installed
146# in the default INSTALL_HDR_PATH usr/include.
147khdr:
148ifeq (1,$(DEFAULT_INSTALL_HDR_PATH))
0ac33e4e 149 $(MAKE) --no-builtin-rules ARCH=$(ARCH) -C $(top_srcdir) headers_install
8ce72dc3 150else
0ac33e4e 151 $(MAKE) --no-builtin-rules INSTALL_HDR_PATH=$$BUILD/usr \
8ce72dc3
SK
152 ARCH=$(ARCH) -C $(top_srcdir) headers_install
153endif
154
155all: khdr
5f70bde2
CM
156 @ret=1; \
157 for TARGET in $(TARGETS); do \
158 BUILD_TARGET=$$BUILD/$$TARGET; \
159 mkdir $$BUILD_TARGET -p; \
9d235a55
JB
160 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET \
161 $(if $(FORCE_TARGETS),|| exit); \
5f70bde2
CM
162 ret=$$((ret * $$?)); \
163 done; exit $$ret;
274343ad 164
cab6b056 165run_tests: all
1ede0536 166 @for TARGET in $(TARGETS); do \
a8ba798b 167 BUILD_TARGET=$$BUILD/$$TARGET; \
0ac33e4e 168 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_tests;\
f467f714
FW
169 done;
170
ddddda9b 171hotplug:
1ede0536 172 @for TARGET in $(TARGETS_HOTPLUG); do \
a8ba798b 173 BUILD_TARGET=$$BUILD/$$TARGET; \
0ac33e4e 174 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET;\
ddddda9b
SK
175 done;
176
177run_hotplug: hotplug
1ede0536 178 @for TARGET in $(TARGETS_HOTPLUG); do \
a8ba798b 179 BUILD_TARGET=$$BUILD/$$TARGET; \
0ac33e4e 180 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_full_test;\
ddddda9b
SK
181 done;
182
183clean_hotplug:
1ede0536 184 @for TARGET in $(TARGETS_HOTPLUG); do \
a8ba798b 185 BUILD_TARGET=$$BUILD/$$TARGET; \
0ac33e4e 186 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\
ddddda9b
SK
187 done;
188
f615e2bb 189run_pstore_crash:
0ac33e4e 190 $(MAKE) -C pstore run_crash
f615e2bb 191
c3c59928
SK
192# Use $BUILD as the default install root. $BUILD points to the
193# right output location for the following cases:
194# 1. output_dir=kernel_src
195# 2. a separate output directory is specified using O= KBUILD_OUTPUT
196# 3. a separate output directory is specified using KBUILD_OUTPUT
17eac6c2 197# Avoid conflict with INSTALL_PATH set by the main Makefile
c3c59928 198#
17eac6c2
SK
199KSFT_INSTALL_PATH ?= $(BUILD)/kselftest_install
200KSFT_INSTALL_PATH := $(abspath $(KSFT_INSTALL_PATH))
201# Avoid changing the rest of the logic here and lib.mk.
202INSTALL_PATH := $(KSFT_INSTALL_PATH)
32dcfba6
ME
203ALL_SCRIPT := $(INSTALL_PATH)/run_kselftest.sh
204
c3c59928 205install: all
32dcfba6
ME
206ifdef INSTALL_PATH
207 @# Ask all targets to install their files
d4e59a53 208 mkdir -p $(INSTALL_PATH)/kselftest
c78fd76f 209 install -m 744 kselftest/module.sh $(INSTALL_PATH)/kselftest/
d4e59a53 210 install -m 744 kselftest/runner.sh $(INSTALL_PATH)/kselftest/
5c069b6d 211 install -m 744 kselftest/prefix.pl $(INSTALL_PATH)/kselftest/
5f70bde2
CM
212 @ret=1; \
213 for TARGET in $(TARGETS); do \
a8ba798b 214 BUILD_TARGET=$$BUILD/$$TARGET; \
9d235a55
JB
215 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET INSTALL_PATH=$(INSTALL_PATH)/$$TARGET install \
216 $(if $(FORCE_TARGETS),|| exit); \
5f70bde2
CM
217 ret=$$((ret * $$?)); \
218 done; exit $$ret;
32dcfba6
ME
219
220 @# Ask all targets to emit their test scripts
a2b1e8a2 221 echo "#!/bin/sh" > $(ALL_SCRIPT)
14f1889f
ME
222 echo "BASE_DIR=\$$(realpath \$$(dirname \$$0))" >> $(ALL_SCRIPT)
223 echo "cd \$$BASE_DIR" >> $(ALL_SCRIPT)
d4e59a53 224 echo ". ./kselftest/runner.sh" >> $(ALL_SCRIPT)
32dcfba6 225 echo "ROOT=\$$PWD" >> $(ALL_SCRIPT)
14f1889f 226 echo "if [ \"\$$1\" = \"--summary\" ]; then" >> $(ALL_SCRIPT)
d4e59a53
KC
227 echo " logfile=\$$BASE_DIR/output.log" >> $(ALL_SCRIPT)
228 echo " cat /dev/null > \$$logfile" >> $(ALL_SCRIPT)
14f1889f 229 echo "fi" >> $(ALL_SCRIPT)
32dcfba6 230
131b30c9
CM
231 @# While building run_kselftest.sh skip also non-existent TARGET dirs:
232 @# they could be the result of a build failure and should NOT be
233 @# included in the generated runlist.
32dcfba6 234 for TARGET in $(TARGETS); do \
a8ba798b 235 BUILD_TARGET=$$BUILD/$$TARGET; \
02bf1f8b 236 [ ! -d $(INSTALL_PATH)/$$TARGET ] && echo "Skipping non-existent dir: $$TARGET" && continue; \
88893cf7 237 echo "[ -w /dev/kmsg ] && echo \"kselftest: Running tests in $$TARGET\" >> /dev/kmsg" >> $(ALL_SCRIPT); \
32dcfba6 238 echo "cd $$TARGET" >> $(ALL_SCRIPT); \
bf660782 239 echo -n "run_many" >> $(ALL_SCRIPT); \
17eac6c2 240 echo -n "Emit Tests for $$TARGET\n"; \
0ac33e4e 241 $(MAKE) -s --no-print-directory OUTPUT=$$BUILD_TARGET -C $$TARGET emit_tests >> $(ALL_SCRIPT); \
bf660782 242 echo "" >> $(ALL_SCRIPT); \
32dcfba6
ME
243 echo "cd \$$ROOT" >> $(ALL_SCRIPT); \
244 done;
245
246 chmod u+x $(ALL_SCRIPT)
247else
248 $(error Error: set INSTALL_PATH to use install)
249endif
250
274343ad 251clean:
1ede0536 252 @for TARGET in $(TARGETS); do \
a8ba798b 253 BUILD_TARGET=$$BUILD/$$TARGET; \
0ac33e4e 254 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\
274343ad 255 done;
32dcfba6 256
8ce72dc3 257.PHONY: khdr all run_tests hotplug run_hotplug clean_hotplug run_pstore_crash install clean