xref: /linux/tools/testing/selftests/Makefile (revision fbac26b9ad21f1311136e3dd9b342d693062cddc)
1# SPDX-License-Identifier: GPL-2.0
2TARGETS = arm64
3TARGETS += bpf
4TARGETS += breakpoints
5TARGETS += capabilities
6TARGETS += cgroup
7TARGETS += clone3
8TARGETS += core
9TARGETS += cpufreq
10TARGETS += cpu-hotplug
11TARGETS += drivers/dma-buf
12TARGETS += efivarfs
13TARGETS += exec
14TARGETS += filesystems
15TARGETS += filesystems/binderfs
16TARGETS += filesystems/epoll
17TARGETS += firmware
18TARGETS += fpu
19TARGETS += ftrace
20TARGETS += futex
21TARGETS += gpio
22TARGETS += intel_pstate
23TARGETS += ipc
24TARGETS += ir
25TARGETS += kcmp
26TARGETS += kexec
27TARGETS += kvm
28TARGETS += lib
29TARGETS += livepatch
30TARGETS += lkdtm
31TARGETS += membarrier
32TARGETS += memfd
33TARGETS += memory-hotplug
34TARGETS += mincore
35TARGETS += mount
36TARGETS += mqueue
37TARGETS += net
38TARGETS += net/forwarding
39TARGETS += net/mptcp
40TARGETS += netfilter
41TARGETS += nsfs
42TARGETS += pidfd
43TARGETS += pid_namespace
44TARGETS += powerpc
45TARGETS += proc
46TARGETS += pstore
47TARGETS += ptrace
48TARGETS += openat2
49TARGETS += rseq
50TARGETS += rtc
51TARGETS += seccomp
52TARGETS += sigaltstack
53TARGETS += size
54TARGETS += sparc64
55TARGETS += splice
56TARGETS += static_keys
57TARGETS += sync
58TARGETS += sysctl
59TARGETS += tc-testing
60TARGETS += timens
61ifneq (1, $(quicktest))
62TARGETS += timers
63endif
64TARGETS += tmpfs
65TARGETS += tpm2
66TARGETS += user
67TARGETS += vm
68TARGETS += x86
69TARGETS += zram
70#Please keep the TARGETS list alphabetically sorted
71# Run "make quicktest=1 run_tests" or
72# "make quicktest=1 kselftest" from top level Makefile
73
74TARGETS_HOTPLUG = cpu-hotplug
75TARGETS_HOTPLUG += memory-hotplug
76
77# User can optionally provide a TARGETS skiplist.
78SKIP_TARGETS ?=
79ifneq ($(SKIP_TARGETS),)
80	TMP := $(filter-out $(SKIP_TARGETS), $(TARGETS))
81	override TARGETS := $(TMP)
82endif
83
84# User can set FORCE_TARGETS to 1 to require all targets to be successfully
85# built; make will fail if any of the targets cannot be built. If
86# FORCE_TARGETS is not set (the default), make will succeed if at least one
87# of the targets gets built.
88FORCE_TARGETS ?=
89
90# Clear LDFLAGS and MAKEFLAGS when implicit rules are missing.  This provides
91# implicit rules to sub-test Makefiles which avoids build failures in test
92# Makefile that don't have explicit build rules.
93ifeq (,$(LINK.c))
94override LDFLAGS =
95override MAKEFLAGS =
96endif
97
98# Append kselftest to KBUILD_OUTPUT and O to avoid cluttering
99# KBUILD_OUTPUT with selftest objects and headers installed
100# by selftests Makefile or lib.mk.
101ifdef building_out_of_srctree
102override LDFLAGS =
103endif
104
105ifneq ($(O),)
106	BUILD := $(O)/kselftest
107else
108	ifneq ($(KBUILD_OUTPUT),)
109		BUILD := $(KBUILD_OUTPUT)/kselftest
110	else
111		BUILD := $(shell pwd)
112		DEFAULT_INSTALL_HDR_PATH := 1
113	endif
114endif
115
116# Prepare for headers install
117top_srcdir ?= ../../..
118include $(top_srcdir)/scripts/subarch.include
119ARCH           ?= $(SUBARCH)
120export KSFT_KHDR_INSTALL_DONE := 1
121export BUILD
122
123# build and run gpio when output directory is the src dir.
124# gpio has dependency on tools/gpio and builds tools/gpio
125# objects in the src directory in all cases making the src
126# repo dirty even when objects are relocated.
127ifneq (1,$(DEFAULT_INSTALL_HDR_PATH))
128	TMP := $(filter-out gpio, $(TARGETS))
129	TARGETS := $(TMP)
130endif
131
132# set default goal to all, so make without a target runs all, even when
133# all isn't the first target in the file.
134.DEFAULT_GOAL := all
135
136# Install headers here once for all tests. KSFT_KHDR_INSTALL_DONE
137# is used to avoid running headers_install from lib.mk.
138# Invoke headers install with --no-builtin-rules to avoid circular
139# dependency in "make kselftest" case. In this case, second level
140# make inherits builtin-rules which will use the rule generate
141# Makefile.o and runs into
142# "Circular Makefile.o <- prepare dependency dropped."
143# and headers_install fails and test compile fails.
144#
145# O= KBUILD_OUTPUT cases don't run into this error, since main Makefile
146# invokes them as sub-makes and --no-builtin-rules is not necessary,
147# but doesn't cause any failures. Keep it simple and use the same
148# flags in both cases.
149# Local build cases: "make kselftest", "make -C" - headers are installed
150# in the default INSTALL_HDR_PATH usr/include.
151khdr:
152ifeq (1,$(DEFAULT_INSTALL_HDR_PATH))
153	$(MAKE) --no-builtin-rules ARCH=$(ARCH) -C $(top_srcdir) headers_install
154else
155	$(MAKE) --no-builtin-rules INSTALL_HDR_PATH=$$BUILD/usr \
156		ARCH=$(ARCH) -C $(top_srcdir) headers_install
157endif
158
159all: khdr
160	@ret=1;							\
161	for TARGET in $(TARGETS); do				\
162		BUILD_TARGET=$$BUILD/$$TARGET;			\
163		mkdir $$BUILD_TARGET  -p;			\
164		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET	\
165				$(if $(FORCE_TARGETS),|| exit);	\
166		ret=$$((ret * $$?));				\
167	done; exit $$ret;
168
169run_tests: all
170	@for TARGET in $(TARGETS); do \
171		BUILD_TARGET=$$BUILD/$$TARGET;	\
172		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_tests;\
173	done;
174
175hotplug:
176	@for TARGET in $(TARGETS_HOTPLUG); do \
177		BUILD_TARGET=$$BUILD/$$TARGET;	\
178		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET;\
179	done;
180
181run_hotplug: hotplug
182	@for TARGET in $(TARGETS_HOTPLUG); do \
183		BUILD_TARGET=$$BUILD/$$TARGET;	\
184		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_full_test;\
185	done;
186
187clean_hotplug:
188	@for TARGET in $(TARGETS_HOTPLUG); do \
189		BUILD_TARGET=$$BUILD/$$TARGET;	\
190		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\
191	done;
192
193run_pstore_crash:
194	$(MAKE) -C pstore run_crash
195
196# Use $BUILD as the default install root. $BUILD points to the
197# right output location for the following cases:
198# 1. output_dir=kernel_src
199# 2. a separate output directory is specified using O= KBUILD_OUTPUT
200# 3. a separate output directory is specified using KBUILD_OUTPUT
201# Avoid conflict with INSTALL_PATH set by the main Makefile
202#
203KSFT_INSTALL_PATH ?= $(BUILD)/kselftest_install
204KSFT_INSTALL_PATH := $(abspath $(KSFT_INSTALL_PATH))
205# Avoid changing the rest of the logic here and lib.mk.
206INSTALL_PATH := $(KSFT_INSTALL_PATH)
207ALL_SCRIPT := $(INSTALL_PATH)/run_kselftest.sh
208TEST_LIST := $(INSTALL_PATH)/kselftest-list.txt
209
210install: all
211ifdef INSTALL_PATH
212	@# Ask all targets to install their files
213	mkdir -p $(INSTALL_PATH)/kselftest
214	install -m 744 kselftest/module.sh $(INSTALL_PATH)/kselftest/
215	install -m 744 kselftest/runner.sh $(INSTALL_PATH)/kselftest/
216	install -m 744 kselftest/prefix.pl $(INSTALL_PATH)/kselftest/
217	install -m 744 run_kselftest.sh $(INSTALL_PATH)/
218	rm -f $(TEST_LIST)
219	@ret=1;	\
220	for TARGET in $(TARGETS); do \
221		BUILD_TARGET=$$BUILD/$$TARGET;	\
222		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET INSTALL_PATH=$(INSTALL_PATH)/$$TARGET install \
223				$(if $(FORCE_TARGETS),|| exit);	\
224		ret=$$((ret * $$?));		\
225	done; exit $$ret;
226
227
228	@# Ask all targets to emit their test scripts
229	@# While building kselftest-list.text skip also non-existent TARGET dirs:
230	@# they could be the result of a build failure and should NOT be
231	@# included in the generated runlist.
232	for TARGET in $(TARGETS); do \
233		BUILD_TARGET=$$BUILD/$$TARGET;	\
234		[ ! -d $(INSTALL_PATH)/$$TARGET ] && echo "Skipping non-existent dir: $$TARGET" && continue; \
235		echo -n "Emit Tests for $$TARGET\n"; \
236		$(MAKE) -s --no-print-directory OUTPUT=$$BUILD_TARGET COLLECTION=$$TARGET \
237			-C $$TARGET emit_tests >> $(TEST_LIST); \
238	done;
239else
240	$(error Error: set INSTALL_PATH to use install)
241endif
242
243FORMAT ?= .gz
244TAR_PATH = $(abspath ${INSTALL_PATH}/kselftest-packages/kselftest.tar${FORMAT})
245gen_tar: install
246	@mkdir -p ${INSTALL_PATH}/kselftest-packages/
247	@tar caf ${TAR_PATH} --exclude=kselftest-packages -C ${INSTALL_PATH} .
248	@echo "Created ${TAR_PATH}"
249
250clean:
251	@for TARGET in $(TARGETS); do \
252		BUILD_TARGET=$$BUILD/$$TARGET;	\
253		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\
254	done;
255
256.PHONY: khdr all run_tests hotplug run_hotplug clean_hotplug run_pstore_crash install clean gen_tar
257