diff options
author | Eric Biggers <ebiggers@kernel.org> | 2025-09-06 14:35:22 -0700 |
---|---|---|
committer | Eric Biggers <ebiggers@kernel.org> | 2025-09-06 16:32:43 -0700 |
commit | cb2d6b132a44a140aed3562ef932754d39ddccf3 (patch) | |
tree | 1503168938a080c05c3b33cb8fbbf966661f36e9 | |
parent | 68546e5632c0b982663af575ae12cc5d81facc91 (diff) |
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>
-rw-r--r-- | lib/crypto/tests/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/tests/Kconfig b/lib/crypto/tests/Kconfig index eaca60d3e0a3..578af717e13a 100644 --- a/lib/crypto/tests/Kconfig +++ b/lib/crypto/tests/Kconfig @@ -13,7 +13,7 @@ config CRYPTO_LIB_BLAKE2S_KUNIT_TEST config CRYPTO_LIB_CURVE25519_KUNIT_TEST tristate "KUnit tests for Curve25519" if !KUNIT_ALL_TESTS depends on KUNIT - default KUNIT_ALL_TESTS + default KUNIT_ALL_TESTS || CRYPTO_SELFTESTS select CRYPTO_LIB_BENCHMARK_VISIBLE select CRYPTO_LIB_CURVE25519 help |