From mboxrd@z Thu Jan 1 00:00:00 1970 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 CD9633537DF; Fri, 24 Apr 2026 13:41:31 +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=1777038091; cv=none; b=nJYuUQ/5AOLCXhJvC/VB9W8EQ/N+JBOito/ohTvBXIcmx+ooB7jRCLCqbB12BXgVEMEOKmOD0CYsstupmqH+/gEytVaVLaNRKRQTCXVCsEmIgbc/VGJx2+9oVmCVOrqdAskJNDyqmjhy5bRGdyH/bUwMO7IDbbvlAYcl4ypcUXw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777038091; c=relaxed/simple; bh=GxzZn9hvUqhlQyf3eh9/FJQ6uZSy79UPMZWoDcQjcv8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ctm7RFjMGytaCoD2STVM8Dgsa4hGS6vii9yPdUK3XMFwq6l5gU+6eavtUm4xmO2mwVXGcQZNXftSp2i5bh7FZ7N+6N5dNhScDXpw0trODZqTNUnGMOExDbqvHIqcIeYBMcvJoxx95yvMzX/9vOq4lhnfcUyjPupQK/Cy3UmzT1Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hAmZF7u8; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="hAmZF7u8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60C2DC19425; Fri, 24 Apr 2026 13:41:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1777038091; bh=GxzZn9hvUqhlQyf3eh9/FJQ6uZSy79UPMZWoDcQjcv8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hAmZF7u812ZVuVUUjkTqX7D8xv20mDJLc6wDQGzhQvKS1NjmngQphHxasltBCykmG VKbJpJZMGvQRBKjo40Q+AW0H/HdUWgWqvTO7yB4dSflnVOwkGR2qbJCOZItriFCsg/ NdIP87CiVxXA0nB3FamlEt0bejUVUluGyoLNHANM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ard Biesheuvel , Eric Biggers Subject: [PATCH 6.18 20/55] kunit: configs: Enable all CRC tests in all_tests.config Date: Fri, 24 Apr 2026 15:30:59 +0200 Message-ID: <20260424132434.269813208@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260424132430.006424517@linuxfoundation.org> References: <20260424132430.006424517@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Eric Biggers commit 44ff3791d6295f7b51dd2711aad6a03dd79aef22 upstream. The new option CONFIG_CRC_ENABLE_ALL_FOR_KUNIT enables all the CRC code that has KUnit tests, causing CONFIG_KUNIT_ALL_TESTS to enable all these tests. Add this option to all_tests.config so that kunit.py will run them when passed the --alltests option. Acked-by: Ard Biesheuvel Link: https://lore.kernel.org/r/20260314172224.15152-1-ebiggers@kernel.org Signed-off-by: Eric Biggers Signed-off-by: Greg Kroah-Hartman --- tools/testing/kunit/configs/all_tests.config | 2 ++ 1 file changed, 2 insertions(+) --- a/tools/testing/kunit/configs/all_tests.config +++ b/tools/testing/kunit/configs/all_tests.config @@ -46,6 +46,8 @@ CONFIG_AUDIT=y CONFIG_PRIME_NUMBERS=y +CONFIG_CRC_ENABLE_ALL_FOR_KUNIT=y + CONFIG_SECURITY=y CONFIG_SECURITY_APPARMOR=y CONFIG_SECURITY_LANDLOCK=y