xref: /linux/tools/testing/selftests/Makefile (revision 7a6eb7c34a78498742b5f82543b7a68c1c443329)
1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
2e722a295SGreg Kroah-HartmanTARGETS = arm64
347a18c42SPintu AgarwalTARGETS += bpf
45aa5bd14SDaniel BorkmannTARGETS += breakpoints
5f4ecb322SBamvor Jian ZhangTARGETS += capabilities
684092dbcSRoman GushchinTARGETS += cgroup
7de528723SChristian BraunerTARGETS += clone3
82c5db60eSChristian BraunerTARGETS += core
9e66d5b67SViresh KumarTARGETS += cpufreq
1066a01b96SAndrew MortonTARGETS += cpu-hotplug
116edf2e37STom MurphyTARGETS += drivers/dma-buf
1266a01b96SAndrew MortonTARGETS += efivarfs
1396e869d8SAndrew MortonTARGETS += exec
14ce290a19SChristian BraunerTARGETS += filesystems
1575abec73SChristian BraunerTARGETS += filesystems/binderfs
16f2728fe8SHeiherTARGETS += filesystems/epoll
1796e869d8SAndrew MortonTARGETS += firmware
184185b3b9SPetteri AimonenTARGETS += fpu
1996e869d8SAndrew MortonTARGETS += ftrace
20ecac1a75SDarren HartTARGETS += futex
2122f6592bSBamvor Jian ZhangTARGETS += gpio
226320303fSStafford HorneTARGETS += intel_pstate
237e722473SBamvor Jian ZhangTARGETS += ipc
24e55c884eSSean YoungTARGETS += ir
2558c7be84SPavel EmelyanovTARGETS += kcmp
26c3c0e811SMimi ZoharTARGETS += kexec
27783e9e51SPaolo BonziniTARGETS += kvm
28317dc34aSKees CookTARGETS += lib
29a2818ee4SJoe LawrenceTARGETS += livepatch
3046d1a0f0SKees CookTARGETS += lkdtm
31b6d97344SPranith KumarTARGETS += membarrier
324f5ce5e8SDavid HerrmannTARGETS += memfd
3358c7be84SPavel EmelyanovTARGETS += memory-hotplug
347a309195SRicardo CañueloTARGETS += mincore
35db181ce0SEric W. BiedermanTARGETS += mount
3696e869d8SAndrew MortonTARGETS += mqueue
37a6f68034SDavid S. MillerTARGETS += net
3881573b18SVadym KochanTARGETS += net/forwarding
39048d19d4SFlorian WestphalTARGETS += net/mptcp
4025d8bcedSFlorian WestphalTARGETS += netfilter
416ad92bf6SAndrey VaginTARGETS += nsfs
42575a0ae9SChristian BraunerTARGETS += pidfd
436952a4f6SChristian BraunerTARGETS += pid_namespace
440e56dacdSMichael EllermanTARGETS += powerpc
459cd65655SAlexey DobriyanTARGETS += proc
46cc04a46fSHiraku ToyookaTARGETS += pstore
4796e869d8SAndrew MortonTARGETS += ptrace
48b28a10aeSAleksa SaraiTARGETS += openat2
49ccba8b64SMathieu DesnoyersTARGETS += rseq
50a12ab9e1SAlexandre BelloniTARGETS += rtc
51c99ee51aSKees CookTARGETS += seccomp
522adcba79SJarkko SakkinenTARGETS += sgx
5319fd2868SStas SergeevTARGETS += sigaltstack
543ce51050STim BirdTARGETS += size
553c545084STom HromatkaTARGETS += sparc64
56b8826e50SAl ViroTARGETS += splice
571087d019SBamvor Jian ZhangTARGETS += static_keys
5882208160SEmilio LópezTARGETS += sync
59179ef035SGabriel Krisman BertaziTARGETS += syscall_user_dispatch
6096e869d8SAndrew MortonTARGETS += sysctl
612b9843fbSBriana OurslerTARGETS += tc-testing
6261c57676SDmitry SafonovTARGETS += timens
632278e5edSShuah Khanifneq (1, $(quicktest))
6496e869d8SAndrew MortonTARGETS += timers
652278e5edSShuah Khanendif
66a3322868SAlexey DobriyanTARGETS += tmpfs
676ea3dfe1SJarkko SakkinenTARGETS += tpm2
6896e869d8SAndrew MortonTARGETS += user
6940723419SVincenzo FrascinoTARGETS += vDSO
7096e869d8SAndrew MortonTARGETS += vm
713f705dfdSAndy LutomirskiTARGETS += x86
72f21fb798SNaresh KambojuTARGETS += zram
7396e869d8SAndrew Morton#Please keep the TARGETS list alphabetically sorted
742278e5edSShuah Khan# Run "make quicktest=1 run_tests" or
75c6a13fafSSeongJae Park# "make quicktest=1 kselftest" from top level Makefile
76274343adSFrederic Weisbecker
77ddddda9bSShuah KhanTARGETS_HOTPLUG = cpu-hotplug
78ddddda9bSShuah KhanTARGETS_HOTPLUG += memory-hotplug
79ddddda9bSShuah Khan
80*7a6eb7c3SMark Brown# User can optionally provide a TARGETS skiplist.  By default we skip
81*7a6eb7c3SMark Brown# BPF since it has cutting edge build time dependencies which require
82*7a6eb7c3SMark Brown# more effort to install.
83*7a6eb7c3SMark BrownSKIP_TARGETS ?= bpf
843a24f7f6SCristian Marussiifneq ($(SKIP_TARGETS),)
853a24f7f6SCristian Marussi	TMP := $(filter-out $(SKIP_TARGETS), $(TARGETS))
863a24f7f6SCristian Marussi	override TARGETS := $(TMP)
873a24f7f6SCristian Marussiendif
883a24f7f6SCristian Marussi
899d235a55SJiri Benc# User can set FORCE_TARGETS to 1 to require all targets to be successfully
909d235a55SJiri Benc# built; make will fail if any of the targets cannot be built. If
919d235a55SJiri Benc# FORCE_TARGETS is not set (the default), make will succeed if at least one
929d235a55SJiri Benc# of the targets gets built.
939d235a55SJiri BencFORCE_TARGETS ?=
949d235a55SJiri Benc
95f69237e1SGreg Thelen# Clear LDFLAGS and MAKEFLAGS when implicit rules are missing.  This provides
96f69237e1SGreg Thelen# implicit rules to sub-test Makefiles which avoids build failures in test
97f69237e1SGreg Thelen# Makefile that don't have explicit build rules.
98f69237e1SGreg Thelenifeq (,$(LINK.c))
9960df4642SArnaldo Carvalho de Melooverride LDFLAGS =
10067d8712dSShuah Khanoverride MAKEFLAGS =
10167d8712dSShuah Khanendif
10267d8712dSShuah Khan
10329e911efSShuah Khan# Append kselftest to KBUILD_OUTPUT and O to avoid cluttering
10461c2018cSShuah Khan# KBUILD_OUTPUT with selftest objects and headers installed
10561c2018cSShuah Khan# by selftests Makefile or lib.mk.
106051f278eSMasahiro Yamadaifdef building_out_of_srctree
10752fd1d08SShuah Khanoverride LDFLAGS =
10852fd1d08SShuah Khanendif
10952fd1d08SShuah Khan
1108ce72dc3SShuah Khanifneq ($(O),)
11129e911efSShuah Khan	BUILD := $(O)/kselftest
1128ce72dc3SShuah Khanelse
1138ce72dc3SShuah Khan	ifneq ($(KBUILD_OUTPUT),)
114f60b85e8SShuah Khan		BUILD := $(KBUILD_OUTPUT)/kselftest
1158ce72dc3SShuah Khan	else
116a8ba798bSbamvor.zhangjian@huawei.com		BUILD := $(shell pwd)
1178ce72dc3SShuah Khan		DEFAULT_INSTALL_HDR_PATH := 1
1188ce72dc3SShuah Khan	endif
119a8ba798bSbamvor.zhangjian@huawei.comendif
120a8ba798bSbamvor.zhangjian@huawei.com
1218ce72dc3SShuah Khan# Prepare for headers install
1228ce72dc3SShuah Khantop_srcdir ?= ../../..
1238ce72dc3SShuah Khaninclude $(top_srcdir)/scripts/subarch.include
1248ce72dc3SShuah KhanARCH           ?= $(SUBARCH)
1258ce72dc3SShuah Khanexport KSFT_KHDR_INSTALL_DONE := 1
126a8ba798bSbamvor.zhangjian@huawei.comexport BUILD
1278ce72dc3SShuah Khan
128d917fb87SShuah Khan# build and run gpio when output directory is the src dir.
129d917fb87SShuah Khan# gpio has dependency on tools/gpio and builds tools/gpio
130d917fb87SShuah Khan# objects in the src directory in all cases making the src
131d917fb87SShuah Khan# repo dirty even when objects are relocated.
132d917fb87SShuah Khanifneq (1,$(DEFAULT_INSTALL_HDR_PATH))
133d917fb87SShuah Khan	TMP := $(filter-out gpio, $(TARGETS))
134d917fb87SShuah Khan	TARGETS := $(TMP)
135d917fb87SShuah Khanendif
136d917fb87SShuah Khan
1378ce72dc3SShuah Khan# set default goal to all, so make without a target runs all, even when
1388ce72dc3SShuah Khan# all isn't the first target in the file.
1398ce72dc3SShuah Khan.DEFAULT_GOAL := all
1408ce72dc3SShuah Khan
1418ce72dc3SShuah Khan# Install headers here once for all tests. KSFT_KHDR_INSTALL_DONE
1428ce72dc3SShuah Khan# is used to avoid running headers_install from lib.mk.
1438ce72dc3SShuah Khan# Invoke headers install with --no-builtin-rules to avoid circular
1448ce72dc3SShuah Khan# dependency in "make kselftest" case. In this case, second level
1458ce72dc3SShuah Khan# make inherits builtin-rules which will use the rule generate
1468ce72dc3SShuah Khan# Makefile.o and runs into
1478ce72dc3SShuah Khan# "Circular Makefile.o <- prepare dependency dropped."
1488ce72dc3SShuah Khan# and headers_install fails and test compile fails.
1498ce72dc3SShuah Khan#
1508ce72dc3SShuah Khan# O= KBUILD_OUTPUT cases don't run into this error, since main Makefile
1518ce72dc3SShuah Khan# invokes them as sub-makes and --no-builtin-rules is not necessary,
1528ce72dc3SShuah Khan# but doesn't cause any failures. Keep it simple and use the same
1538ce72dc3SShuah Khan# flags in both cases.
1548ce72dc3SShuah Khan# Local build cases: "make kselftest", "make -C" - headers are installed
1558ce72dc3SShuah Khan# in the default INSTALL_HDR_PATH usr/include.
1568ce72dc3SShuah Khankhdr:
1578ce72dc3SShuah Khanifeq (1,$(DEFAULT_INSTALL_HDR_PATH))
1580ac33e4eSIlya Leoshkevich	$(MAKE) --no-builtin-rules ARCH=$(ARCH) -C $(top_srcdir) headers_install
1598ce72dc3SShuah Khanelse
1600ac33e4eSIlya Leoshkevich	$(MAKE) --no-builtin-rules INSTALL_HDR_PATH=$$BUILD/usr \
1618ce72dc3SShuah Khan		ARCH=$(ARCH) -C $(top_srcdir) headers_install
1628ce72dc3SShuah Khanendif
1638ce72dc3SShuah Khan
1648ce72dc3SShuah Khanall: khdr
1655f70bde2SCristian Marussi	@ret=1;							\
1665f70bde2SCristian Marussi	for TARGET in $(TARGETS); do				\
167a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;			\
168a8ba798bSbamvor.zhangjian@huawei.com		mkdir $$BUILD_TARGET  -p;			\
1699d235a55SJiri Benc		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET	\
1709d235a55SJiri Benc				$(if $(FORCE_TARGETS),|| exit);	\
1715f70bde2SCristian Marussi		ret=$$((ret * $$?));				\
1725f70bde2SCristian Marussi	done; exit $$ret;
173274343adSFrederic Weisbecker
174cab6b056SAndrew Mortonrun_tests: all
1751ede0536SShuah Khan	@for TARGET in $(TARGETS); do \
176a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;	\
1770ac33e4eSIlya Leoshkevich		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_tests;\
178f467f714SFrederic Weisbecker	done;
179f467f714SFrederic Weisbecker
180ddddda9bSShuah Khanhotplug:
1811ede0536SShuah Khan	@for TARGET in $(TARGETS_HOTPLUG); do \
182a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;	\
1830ac33e4eSIlya Leoshkevich		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET;\
184ddddda9bSShuah Khan	done;
185ddddda9bSShuah Khan
186ddddda9bSShuah Khanrun_hotplug: hotplug
1871ede0536SShuah Khan	@for TARGET in $(TARGETS_HOTPLUG); do \
188a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;	\
1890ac33e4eSIlya Leoshkevich		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_full_test;\
190ddddda9bSShuah Khan	done;
191ddddda9bSShuah Khan
192ddddda9bSShuah Khanclean_hotplug:
1931ede0536SShuah Khan	@for TARGET in $(TARGETS_HOTPLUG); do \
194a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;	\
1950ac33e4eSIlya Leoshkevich		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\
196ddddda9bSShuah Khan	done;
197ddddda9bSShuah Khan
198f615e2bbSHiraku Toyookarun_pstore_crash:
1990ac33e4eSIlya Leoshkevich	$(MAKE) -C pstore run_crash
200f615e2bbSHiraku Toyooka
201c3c59928SShuah Khan# Use $BUILD as the default install root. $BUILD points to the
202c3c59928SShuah Khan# right output location for the following cases:
203c3c59928SShuah Khan# 1. output_dir=kernel_src
204c3c59928SShuah Khan# 2. a separate output directory is specified using O= KBUILD_OUTPUT
205c3c59928SShuah Khan# 3. a separate output directory is specified using KBUILD_OUTPUT
20617eac6c2SShuah Khan# Avoid conflict with INSTALL_PATH set by the main Makefile
207c3c59928SShuah Khan#
20817eac6c2SShuah KhanKSFT_INSTALL_PATH ?= $(BUILD)/kselftest_install
20917eac6c2SShuah KhanKSFT_INSTALL_PATH := $(abspath $(KSFT_INSTALL_PATH))
21017eac6c2SShuah Khan# Avoid changing the rest of the logic here and lib.mk.
21117eac6c2SShuah KhanINSTALL_PATH := $(KSFT_INSTALL_PATH)
21232dcfba6SMichael EllermanALL_SCRIPT := $(INSTALL_PATH)/run_kselftest.sh
213f0f0a5dfSKees CookTEST_LIST := $(INSTALL_PATH)/kselftest-list.txt
21432dcfba6SMichael Ellerman
215c3c59928SShuah Khaninstall: all
21632dcfba6SMichael Ellermanifdef INSTALL_PATH
21732dcfba6SMichael Ellerman	@# Ask all targets to install their files
218d4e59a53SKees Cook	mkdir -p $(INSTALL_PATH)/kselftest
219c78fd76fSKees Cook	install -m 744 kselftest/module.sh $(INSTALL_PATH)/kselftest/
220d4e59a53SKees Cook	install -m 744 kselftest/runner.sh $(INSTALL_PATH)/kselftest/
2215c069b6dSKees Cook	install -m 744 kselftest/prefix.pl $(INSTALL_PATH)/kselftest/
222f0f0a5dfSKees Cook	install -m 744 run_kselftest.sh $(INSTALL_PATH)/
223f0f0a5dfSKees Cook	rm -f $(TEST_LIST)
2245f70bde2SCristian Marussi	@ret=1;	\
2255f70bde2SCristian Marussi	for TARGET in $(TARGETS); do \
226a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;	\
2279d235a55SJiri Benc		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET INSTALL_PATH=$(INSTALL_PATH)/$$TARGET install \
2289d235a55SJiri Benc				$(if $(FORCE_TARGETS),|| exit);	\
2295f70bde2SCristian Marussi		ret=$$((ret * $$?));		\
2305f70bde2SCristian Marussi	done; exit $$ret;
23132dcfba6SMichael Ellerman
23232dcfba6SMichael Ellerman
233f0f0a5dfSKees Cook	@# Ask all targets to emit their test scripts
234f0f0a5dfSKees Cook	@# While building kselftest-list.text skip also non-existent TARGET dirs:
235131b30c9SCristian Marussi	@# they could be the result of a build failure and should NOT be
236131b30c9SCristian Marussi	@# included in the generated runlist.
23732dcfba6SMichael Ellerman	for TARGET in $(TARGETS); do \
238a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;	\
23902bf1f8bSPrabhakar Kushwaha		[ ! -d $(INSTALL_PATH)/$$TARGET ] && echo "Skipping non-existent dir: $$TARGET" && continue; \
24017eac6c2SShuah Khan		echo -n "Emit Tests for $$TARGET\n"; \
241f0f0a5dfSKees Cook		$(MAKE) -s --no-print-directory OUTPUT=$$BUILD_TARGET COLLECTION=$$TARGET \
242f0f0a5dfSKees Cook			-C $$TARGET emit_tests >> $(TEST_LIST); \
24332dcfba6SMichael Ellerman	done;
24432dcfba6SMichael Ellermanelse
24532dcfba6SMichael Ellerman	$(error Error: set INSTALL_PATH to use install)
24632dcfba6SMichael Ellermanendif
24732dcfba6SMichael Ellerman
248a5f30467SVeronika KabatovaFORMAT ?= .gz
249a5f30467SVeronika KabatovaTAR_PATH = $(abspath ${INSTALL_PATH}/kselftest-packages/kselftest.tar${FORMAT})
250a5f30467SVeronika Kabatovagen_tar: install
251a5f30467SVeronika Kabatova	@mkdir -p ${INSTALL_PATH}/kselftest-packages/
252a5f30467SVeronika Kabatova	@tar caf ${TAR_PATH} --exclude=kselftest-packages -C ${INSTALL_PATH} .
253a5f30467SVeronika Kabatova	@echo "Created ${TAR_PATH}"
254a5f30467SVeronika Kabatova
255274343adSFrederic Weisbeckerclean:
2561ede0536SShuah Khan	@for TARGET in $(TARGETS); do \
257a8ba798bSbamvor.zhangjian@huawei.com		BUILD_TARGET=$$BUILD/$$TARGET;	\
2580ac33e4eSIlya Leoshkevich		$(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\
259274343adSFrederic Weisbecker	done;
26032dcfba6SMichael Ellerman
261a5f30467SVeronika Kabatova.PHONY: khdr all run_tests hotplug run_hotplug clean_hotplug run_pstore_crash install clean gen_tar
262