From: "Zhang, Fan" <fanzhang.oss@gmail.com>
To: Kai Ji <kai.ji@intel.com>, dev@dpdk.org
Cc: stable@dpdk.org, gakhil@marvell.com
Subject: Re: [dpdk-dev v1] app/test: fix of bitwise and operator in return
Date: Fri, 11 Nov 2022 13:16:36 +0000 [thread overview]
Message-ID: <04616529-f326-622f-8c45-05d6de124b3b@gmail.com> (raw)
In-Reply-To: <20221111115941.16232-1-kai.ji@intel.com>
On 11/11/2022 11:59 AM, Kai Ji wrote:
> This patch remove incorrect bitwise and operator used in the
> return function of sw snow3g testcase
>
> Signed-off-by: Kai Ji <kai.ji@intel.com>
> ---
> app/test/test_cryptodev.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c
> index e1122fcd7c..d6ae762df9 100644
> --- a/app/test/test_cryptodev.c
> +++ b/app/test/test_cryptodev.c
> @@ -6870,8 +6870,10 @@ test_snow3g_decryption_with_digest_test_case_1(void)
> */
> snow3g_hash_test_vector_setup(&snow3g_test_case_7, &snow3g_hash_data);
>
> - return test_snow3g_decryption(&snow3g_test_case_7) &
> - test_snow3g_authentication_verify(&snow3g_hash_data);
> + if (test_snow3g_decryption(&snow3g_test_case_7))
> + return TEST_FAILED;
> +
> + return test_snow3g_authentication_verify(&snow3g_hash_data);
> }
>
> static int
Acked-by: Fan Zhang <fanzhang.oss@gmail.com>
next prev parent reply other threads:[~2022-11-11 13:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-11 11:59 Kai Ji
2022-11-11 13:16 ` Zhang, Fan [this message]
2022-11-11 13:18 ` [EXT] " Akhil Goyal
2022-11-11 16:27 ` [dpdk-dev v2] " Kai Ji
2022-11-14 10:22 ` Power, Ciara
2022-11-15 9:30 ` Akhil Goyal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=04616529-f326-622f-8c45-05d6de124b3b@gmail.com \
--to=fanzhang.oss@gmail.com \
--cc=dev@dpdk.org \
--cc=gakhil@marvell.com \
--cc=kai.ji@intel.com \
--cc=stable@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).