Message ID | e60bdae0-2df1-9401-a8e0-3949884a7db0@linuxfoundation.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 7a6eb7c34a78498742b5f82543b7a68c1c443329 |
Headers | show |
Series | [GIT,PULL] Kselftest fixes for Linux 5.11-rc4 | expand |
The pull request you sent on Thu, 14 Jan 2021 13:52:41 -0700:
> git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-fixes-5.11-rc4
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/146620506274bd24d52fb1c589110a30eed8240b
Thank you!
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index afbab4aeef3c..8a917cb4426a 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -77,8 +77,10 @@ TARGETS += zram TARGETS_HOTPLUG = cpu-hotplug TARGETS_HOTPLUG += memory-hotplug -# User can optionally provide a TARGETS skiplist. -SKIP_TARGETS ?= +# User can optionally provide a TARGETS skiplist. By default we skip +# BPF since it has cutting edge build time dependencies which require +# more effort to install. +SKIP_TARGETS ?= bpf ifneq ($(SKIP_TARGETS),) TMP := $(filter-out $(SKIP_TARGETS), $(TARGETS)) override TARGETS := $(TMP)