From patchwork Fri Oct 4 09:53:47 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?QmrDtnJuIFTDtnBlbA==?= X-Patchwork-Id: 832863 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DF91714659B; Fri, 4 Oct 2024 09:53:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728035638; cv=none; b=oiyoIeWRi+gvqQFq5y++4O5zqWQ7wais/gywEi0HTPT5DTF+XA9+7aTzgDPLO92C+esE7AxPBCaxDUy3mE3CK56hNVzdPHg1jMWD8vGSB3vTjTvPsqeIZBYKSmk/brUybxyHEx7+n74jLv6HtMk+G/EzfTDMbcYXDRtOvOKHvnE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728035638; c=relaxed/simple; bh=+gpexw+GwzFZ1lHSAbDPE9XzLQf8wRp0a9tbaMAgoHY=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type; b=aINnCqSN+SnxujzrQqvkXn5hZwuB7MujeC4YxNZ3ApEsge82YW9CeTZqDL+KZGoWjP7Pwx/gJsFOCRlVy0qrXLODZH7g+4XeyoNFV565V4/d+yelBJKFYmvNOw3NIARZqkUEvCAfFbAcxJJIVHMnBGYnq9Awvh8qLaveIrLus0I= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=IlImvfew; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="IlImvfew" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A55C4C4CEC6; Fri, 4 Oct 2024 09:53:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1728035637; bh=+gpexw+GwzFZ1lHSAbDPE9XzLQf8wRp0a9tbaMAgoHY=; h=From:To:Cc:Subject:Date:From; b=IlImvfewMB2ZAGEK2TtFwv+s6oPed/fZfd0vY+v7tn6rsY8dKyGaWZVUbxH8/FiaP TJbDmjgthJAyCsX394bPOyNilMqhBu3rw0ayhCGQ2sc/szq0bxxU19Py2QuvwJjtfB S4hduUL0Fgqx60GcBoiXUSZb9ZRHBtcN2aIekUzncWB5EvGrh6lUrqHqnJXHiVuE+8 QuiK6JrVE+ZpdiDFvSSuIAKeDOdlnKfXd6/oS+bNCD/GmDw7fRyug1TwFJC0mTJNIz 5e9obZNTkgni0SmOkfMQVh5IJl06s/ivk1q5JUWiv1B5E+6/D4uI+EfKncv9E/Zs8J CVVjnAte6oRSA== From: =?utf-8?b?QmrDtnJuIFTDtnBlbA==?= To: Mark Brown , Shuah Khan , linux-kselftest@vger.kernel.org, bpf@vger.kernel.org, Andrii Nakryiko , Eduard Zingerman , Mykola Lysenko Cc: =?utf-8?b?QmrDtnJuIFTDtnBlbA==?= , linux-kernel@vger.kernel.org Subject: [PATCH] selftests: Do not skip BPF selftests by default Date: Fri, 4 Oct 2024 11:53:47 +0200 Message-ID: <20241004095348.797020-1-bjorn@kernel.org> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kselftest@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Björn Töpel This effectively is a revert of commit 7a6eb7c34a78 ("selftests: Skip BPF seftests by default"). At the time when this was added, BPF had "build time dependencies on cutting edge versions". Since then a number of BPF capable tests has been included in net, hid, sched_ext. There is no reason not to include BPF by default in the build. Remove BPF from the selftests skiplist. Signed-off-by: Björn Töpel --- tools/testing/selftests/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) base-commit: 0c559323bbaabee7346c12e74b497e283aaafef5 diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index b38199965f99..88f59a5fef96 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -129,10 +129,8 @@ ifeq ($(filter net/lib,$(TARGETS)),) endif endif -# 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 +# User can optionally provide a TARGETS skiplist. +SKIP_TARGETS ?= ifneq ($(SKIP_TARGETS),) TMP := $(filter-out $(SKIP_TARGETS), $(TARGETS)) override TARGETS := $(TMP)