Skip to content

Commit 1466205

Browse files
committed
Merge tag 'linux-kselftest-fixes-5.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull kselftest fixes from Shuah Khan: "One single fix to skip BPF selftests by default. BPF selftests have a hard dependency on cutting edge versions of tools in the BPF ecosystem including LLVM. Skipping BPF allows by default will make it easier for users interested in running kselftest as a whole. Users can include BPF in Kselftest build by via SKIP_TARGETS variable" * tag 'linux-kselftest-fixes-5.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest: selftests: Skip BPF seftests by default
2 parents e8c13a6 + 7a6eb7c commit 1466205

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/testing/selftests/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,10 @@ TARGETS += zram
7777
TARGETS_HOTPLUG = cpu-hotplug
7878
TARGETS_HOTPLUG += memory-hotplug
7979

80-
# User can optionally provide a TARGETS skiplist.
81-
SKIP_TARGETS ?=
80+
# User can optionally provide a TARGETS skiplist. By default we skip
81+
# BPF since it has cutting edge build time dependencies which require
82+
# more effort to install.
83+
SKIP_TARGETS ?= bpf
8284
ifneq ($(SKIP_TARGETS),)
8385
TMP := $(filter-out $(SKIP_TARGETS), $(TARGETS))
8486
override TARGETS := $(TMP)

0 commit comments

Comments
 (0)