[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250906233048.GA109599@quark>
Date: Sat, 6 Sep 2025 16:30:48 -0700
From: Eric Biggers <ebiggers@...nel.org>
To: linux-crypto@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, Ard Biesheuvel <ardb@...nel.org>,
"Jason A . Donenfeld" <Jason@...c4.com>,
Zhiqi Song <songzhiqi1@...wei.com>,
Longfang Liu <liulongfang@...wei.com>, x86@...nel.org,
linux-arm-kernel@...ts.infradead.org, linuxppc-dev@...ts.ozlabs.org
Subject: Re: [PATCH v2 07/12] lib/crypto: tests: Migrate Curve25519 self-test
to KUnit
On Sat, Sep 06, 2025 at 02:35:18PM -0700, Eric Biggers wrote:
> +static struct kunit_case curve25519_test_cases[] = {
> + KUNIT_CASE(test_curve25519),
> + KUNIT_CASE(test_curve25519_basepoint),
> + {},
> +};
> +
> +static struct kunit_suite curve25519_test_suite = {
> + .name = "curve25519",
> + .test_cases = curve25519_test_cases,
> +};
> +kunit_test_suite(curve25519_test_suite);
Correction: there should be a module description and license here.
MODULE_DESCRIPTION("KUnit tests and benchmark for Curve25519");
MODULE_LICENSE("GPL");
- Eric
Powered by blists - more mailing lists