Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

lib/crypto: tests: Enable Curve25519 test when CRYPTO_SELFTESTS

Now that the Curve25519 library has been disentangled from CRYPTO,
adding CRYPTO_SELFTESTS as a default value of
CRYPTO_LIB_CURVE25519_KUNIT_TEST no longer causes a recursive kconfig
dependency. Do this, which makes this option consistent with the other
crypto KUnit test options in the same file.

Link: https://lore.kernel.org/r/20250906213523.84915-12-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@kernel.org>

+1 -1
+1 -1
lib/crypto/tests/Kconfig
··· 13 13 config CRYPTO_LIB_CURVE25519_KUNIT_TEST 14 14 tristate "KUnit tests for Curve25519" if !KUNIT_ALL_TESTS 15 15 depends on KUNIT 16 - default KUNIT_ALL_TESTS 16 + default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS 17 17 select CRYPTO_LIB_BENCHMARK_VISIBLE 18 18 select CRYPTO_LIB_CURVE25519 19 19 help