Skip to content

Commit

Permalink
test/crypto: fix typo in asym tests
Browse files Browse the repository at this point in the history
[ upstream commit ea7b0e1a17717872a1d7d74b075a77fdb9414fa4 ]

test_dh_keygenration() changed to test_dh_key_generation()

Fixes: fc6c906 ("test/crypto: add DH and DSA tests")
Fixes: da74df7 ("test/crypto: move test suite parameters to header file")

Signed-off-by: Sivaramakrishnan Venkat <venkatx.sivaramakrishnan@intel.com>
Acked-by: Ciara Power <ciara.power@intel.com>
  • Loading branch information
vsivar1x authored and bluca committed Oct 18, 2023
1 parent d513b35 commit 5e4d1d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/test/test_cryptodev_asym.c
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@ test_mod_exp(void)
}

static int
test_dh_keygenration(void)
test_dh_key_generation(void)
{
int status;

Expand Down Expand Up @@ -2291,7 +2291,7 @@ static struct unit_test_suite cryptodev_openssl_asym_testsuite = {
.unit_test_cases = {
TEST_CASE_ST(ut_setup, ut_teardown, test_capability),
TEST_CASE_ST(ut_setup, ut_teardown, test_dsa),
TEST_CASE_ST(ut_setup, ut_teardown, test_dh_keygenration),
TEST_CASE_ST(ut_setup, ut_teardown, test_dh_key_generation),
TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_enc_dec),
TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_sign_verify),
TEST_CASE_ST(ut_setup, ut_teardown, test_rsa_enc_dec_crt),
Expand Down

0 comments on commit 5e4d1d5

Please sign in to comment.