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 kevintraynor committed Oct 31, 2023
1 parent 0ad8ae6 commit 4346110
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -1259,6 +1259,7 @@ Simon Kuenzer <simon.kuenzer@neclab.eu>
Siobhan Butler <siobhan.a.butler@intel.com>
Sirshak Das <sirshak.das@arm.com>
Sivaprasad Tummala <sivaprasad.tummala@amd.com> <sivaprasad.tummala@intel.com>
Sivaramakrishnan Venkat <venkatx.sivaramakrishnan@intel.com>
Siwar Zitouni <siwar.zitouni@6wind.com>
Slawomir Mrozowicz <slawomirx.mrozowicz@intel.com>
Slawomir Rosek <slawomir.rosek@semihalf.com>
Expand Down
4 changes: 2 additions & 2 deletions app/test/test_cryptodev_asym.c
Original file line number Diff line number Diff line change
Expand Up @@ -1717,7 +1717,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 = {
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_rsa_enc_dec),
TEST_CASE_ST(ut_setup_asym, ut_teardown_asym,
test_rsa_sign_verify),
Expand Down

0 comments on commit 4346110

Please sign in to comment.