From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B86F642CC7 for ; Thu, 15 Jun 2023 16:16:10 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B360240EE3; Thu, 15 Jun 2023 16:16:10 +0200 (CEST) Received: from mail-ot1-f50.google.com (mail-ot1-f50.google.com [209.85.210.50]) by mails.dpdk.org (Postfix) with ESMTP id C0F1840E0F for ; Thu, 15 Jun 2023 16:16:09 +0200 (CEST) Received: by mail-ot1-f50.google.com with SMTP id 46e09a7af769-6b28eefb49cso5122923a34.0 for ; Thu, 15 Jun 2023 07:16:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1686838569; x=1689430569; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=wu3ndRHl9jkWdkjzkrEux6ziN/NYrCdAF0qROyaEjWs=; b=feFvJIiddA/lto5TmjWGmdQBb2qoVTu8S7g86riACR9DAkhcPiWFo8eFWI3fABwcqw IpKunGdQosOXAsciMB08q5r7W0mQuyV8oUPEcTnz8x3GwWjg0FZyDc2lbdmk0sP0LVcK m3oF73TZhAlv50QAHcgh44zBxoes5QBttWfAsKUjYhFzJG1kOKQn/bgMBbK3Wu2TYTTm jKTVlRUdHP2OD1l+biFiDAqtCt9GKYzd20hb/rXqI0neiDl19y99s0el1jYdZR9TRvKU DY+rm5Y/QCwIQX1tOFa2Vvd2qaEw7suSrQl/uCFTlLPI+KKxNK5QVXjhnfmpYpVheCTA BFPA== X-Gm-Message-State: AC+VfDwRAPdmNwTPOdidtAkpN+I0jyAZ+dcAn+aJJyun45Z6U7hCaDP2 uPfhdtXQemQBSKtZfg5CpyVsj+y2H6L7qtJ7 X-Google-Smtp-Source: ACHHUZ7cXnke9DJvR+zuzLB8I6FGUzaB5aDuy5ZuFMiBTkm/GhMWW9KoIBGBoG1ir3KlxGQUaHjy6w== X-Received: by 2002:a05:6358:c6a4:b0:12b:cc75:c87b with SMTP id fe36-20020a056358c6a400b0012bcc75c87bmr10274283rwb.28.1686838568707; Thu, 15 Jun 2023 07:16:08 -0700 (PDT) Received: from mail-yw1-f171.google.com (mail-yw1-f171.google.com. [209.85.128.171]) by smtp.gmail.com with ESMTPSA id 193-20020a2513ca000000b00bb0a8342723sm4109024ybt.50.2023.06.15.07.16.08 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 15 Jun 2023 07:16:08 -0700 (PDT) Received: by mail-yw1-f171.google.com with SMTP id 00721157ae682-56ce6bbe274so20233337b3.1 for ; Thu, 15 Jun 2023 07:16:08 -0700 (PDT) X-Received: by 2002:a81:7c8a:0:b0:565:c1a7:d197 with SMTP id x132-20020a817c8a000000b00565c1a7d197mr4393086ywc.39.1686838567998; Thu, 15 Jun 2023 07:16:07 -0700 (PDT) MIME-Version: 1.0 References: <20230615120800.22901-1-saoirse.odonovan@intel.com> In-Reply-To: <20230615120800.22901-1-saoirse.odonovan@intel.com> From: Luca Boccassi Date: Thu, 15 Jun 2023 15:15:56 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 20.11] test/crypto: fix return value for SNOW3G To: "Saoirse O'Donovan" Cc: Declan Doherty , stable@dpdk.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org On Thu, 15 Jun 2023 at 13:09, Saoirse O'Donovan wrote: > > Unit tests were failing due to the return value of the decryption and > authentication functions not being handled correctly. This has now been > modified to return the expected test status. > > Fixes: 326e988672aa ("test/crypto: fix bitwise operator in a SNOW3G case") > Cc: stable@dpdk.org > > Signed-off-by: Saoirse O'Donovan > --- > app/test/test_cryptodev.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) Thanks, applied.