test_dh_keygenration() changed to test_dh_key_generation()
Fixes: fc6c9066e40d ("test/crypto: add DH and DSA tests")
Fixes: da74df7d38c0 ("test/crypto: move test suite parameters to header file")
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Sivaramakrishnan VenkatX <[email protected]>
---
.mailmap | 1 +
app/test/test_cryptodev_asym.c | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.mailmap b/.mailmap
index 864d33ee46..b84828a28d 100644
--- a/.mailmap
+++ b/.mailmap
@@ -1294,6 +1294,7 @@ Simon Kuenzer <[email protected]>
Siobhan Butler <[email protected]>
Sirshak Das <[email protected]>
Sivaprasad Tummala <[email protected]> <[email protected]>
+Sivaramakrishnan VenkatX <[email protected]>
Siwar Zitouni <[email protected]>
Slawomir Mrozowicz <[email protected]>
Slawomir Rosek <[email protected]>
diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c
index 0ef2642fdd..fd4a6321fc 100644
--- a/app/test/test_cryptodev_asym.c
+++ b/app/test/test_cryptodev_asym.c
@@ -1211,7 +1211,7 @@ test_mod_exp(void)
}
static int
-test_dh_keygenration(void)
+test_dh_key_generation(void)
{
int status;
@@ -2684,7 +2684,7 @@ static struct unit_test_suite
cryptodev_openssl_asym_testsuite = {
TEST_CASE_ST(ut_setup_asym, ut_teardown_asym, test_capability),
TEST_CASE_ST(ut_setup_asym, ut_teardown_asym, test_dsa),
TEST_CASE_ST(ut_setup_asym, ut_teardown_asym,
- test_dh_keygenration),
+ test_dh_key_generation),
TEST_CASE_ST(ut_setup_asym, ut_teardown_asym,
test_sm2_sign_rnd_secret),
TEST_CASE_ST(ut_setup_asym, ut_teardown_asym, test_sm2_verify),
TEST_CASE_ST(ut_setup_asym, ut_teardown_asym,
test_sm2_enc_rnd_secret),
--
2.25.1