[dpdk-dev] [PATCH 5/6] app/test: register octeontx2 PMD to asym testsuite
Akhil Goyal
akhil.goyal at nxp.com
Tue Oct 1 16:13:58 CEST 2019
>
> From: Sunila Sahu <ssahu at marvell.com>
>
> This patch updates asymmetric crypto unit-test application to
> validate asymmetric crypto operation supported by octeontx2 PMD.
>
> Signed-off-by: Anoob Joseph <anoobj at marvell.com>
> Signed-off-by: Kanaka Durga Kotamarthy <kkotamarthy at marvell.com>
> Signed-off-by: Sunila Sahu <ssahu at marvell.com>
> ---
> app/test/test_cryptodev_asym.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c
> index 241c384..edbd34e 100644
> --- a/app/test/test_cryptodev_asym.c
> +++ b/app/test/test_cryptodev_asym.c
> @@ -1851,6 +1851,21 @@ test_cryptodev_octeontx_asym(void)
> return unit_test_suite_runner(&cryptodev_octeontx_asym_testsuite);
> }
>
> +static int
> +test_cryptodev_octeontx2_asym(void)
> +{
> + gbl_driver_id = rte_cryptodev_driver_id_get(
> + RTE_STR(CRYPTODEV_NAME_OCTEONTX2_PMD));
> + if (gbl_driver_id == -1) {
> + RTE_LOG(ERR, USER1, "OCTEONTX2 PMD must be loaded.
> Check if "
> +
> "CONFIG_RTE_LIBRTE_PMD_OCTEONTX2_CRYPTO is "
> + "enabled in config file to run this "
> + "testsuite.\n");
> + return TEST_FAILED;
> + }
> + return unit_test_suite_runner(&cryptodev_octeontx_asym_testsuite);
> +}
> +
> REGISTER_TEST_COMMAND(cryptodev_openssl_asym_autotest,
> test_cryptodev_openssl_asym);
>
> @@ -1858,3 +1873,6 @@
> REGISTER_TEST_COMMAND(cryptodev_qat_asym_autotest,
> test_cryptodev_qat_asym);
>
> REGISTER_TEST_COMMAND(cryptodev_octeontx_asym_autotest,
> test_cryptodev_octeontx_asym);
It looks a typo but it is intentional. Better to add a comment here and in the description
That you are reusing the octeontx test suite.
> +
> +REGISTER_TEST_COMMAND(cryptodev_octeontx2_asym_autotest,
> + test_cryptodev_octeontx2_asym);
> --
> 2.7.4
More information about the dev
mailing list