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 846FF42826 for ; Thu, 23 Mar 2023 14:54:38 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7F23A4021E; Thu, 23 Mar 2023 14:54:38 +0100 (CET) Received: from mail-oi1-f178.google.com (mail-oi1-f178.google.com [209.85.167.178]) by mails.dpdk.org (Postfix) with ESMTP id DF1BD4021D for ; Thu, 23 Mar 2023 14:54:36 +0100 (CET) Received: by mail-oi1-f178.google.com with SMTP id bk5so6894714oib.6 for ; Thu, 23 Mar 2023 06:54:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1679579676; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=mV21QXGnxdnG5p5dX5KT14JDfyO9zRuIS2jcrp/FRh8=; b=Bd2lhN4W9xWSOgbh5aEoV62SNzZVuwmp7mODKcUzQB8lCW79xNyWNMKg9XCCtEUG0T L9e14H8h2iYYM9yidmZ+zpijh/BPAFoA6E63NivF1S37oD4azdab5noB7oi0Z3n66cin 0D6UuNVbF3848XUXWeLbW5wOvZe6wC6v2OAu4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1679579676; 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=mV21QXGnxdnG5p5dX5KT14JDfyO9zRuIS2jcrp/FRh8=; b=16cUsUUMWsboYlkCr6GJ9o8AB4vNJcy/uSByqXN5SPueL1iBK5tLlkzuJ7zoPJU5bH nKGInIKpecwB9rGZGdw/39vZyYbaWS4uPPXaNN5yeS+x7ZkHjVuAuaSyWJjCyyaSz4X7 /yMS3osvxj6pXWgZ8hOQBuFiJcNTpPBc8VGX5FX8/6ELkCZfxSKmjwwy+fa+aHUmsMVH LjOqbdx8YiTli1My5Noj7pI4vj1eSJi6xi5Qz51QdFR5XIIs102Rck3eepgki/0KALfD WfooiOEr4L4EbX6mZ5SVf2nHXmaPQUMvFWeFaP0XAuRj+6+JFd7zbhLAjKihcU2A57+3 byMw== X-Gm-Message-State: AO0yUKXY1iq5BXjgOZ/qxmw+mfsSnB7REZv3b2oJrYIM4whmS0FSqbGD 2hjbaL/hxAanGHqFILFt5nUaXyKTjfV32l7VU5sAWQ== X-Google-Smtp-Source: AK7set+MO0NY/4ywcJ0ZNzLJlGF/GjnSE4Mly2rUdPoU1DRwhseYCvdfCADCXi5J8sN6XZRW+2DGQv14LXOpA3NjRaA= X-Received: by 2002:a54:4884:0:b0:386:a6d2:30ac with SMTP id r4-20020a544884000000b00386a6d230acmr2317090oic.1.1679579676113; Thu, 23 Mar 2023 06:54:36 -0700 (PDT) MIME-Version: 1.0 References: <20230315172837.29736-1-jspewock@iol.unh.edu> In-Reply-To: <20230315172837.29736-1-jspewock@iol.unh.edu> From: Patrick Robb Date: Thu, 23 Mar 2023 09:54:25 -0400 Message-ID: Subject: Re: [PATCH v5 0/4] Add ACVP tool To: jspewock@iol.unh.edu Cc: ci@dpdk.org, Ali Alnubani , Aaron Conole Content-Type: multipart/alternative; boundary="000000000000f792d905f7919d07" X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org --000000000000f792d905f7919d07 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hi Aaron, Ali, I just wanted to bump this. Is there anything I can do to advance the review process? Obviously I could add an ack or tested-by, but I assume that's not really too meaningful given the context of Jeremy and I working together. On Wed, Mar 15, 2023 at 1:30=E2=80=AFPM wrote: > From: Jeremy Spewock > > v1: https://mails.dpdk.org/archives/ci/2022-January/001599.html > v2: https://mails.dpdk.org/archives/ci/2022-January/001611.html > v3: https://mails.dpdk.org/archives/ci/2022-February/001636.html > v4: https://mails.dpdk.org/archives/ci/2022-April/001702.html > v5: > * updated out-of-date readme to better match current implementation > * updated default config file to support more algorithms > > Brandon Lo (4): > tools: add acvp_tool > tools: add default config file for acvp_tool > tools: add requirements file for acvp_tool > doc: add readme file for acvp_tool > > tools/acvp/README | 129 +++++++++++++++ > tools/acvp/__init__.py | 0 > tools/acvp/acvp_config.json | 52 ++++++ > tools/acvp/acvp_tool.py | 319 ++++++++++++++++++++++++++++++++++++ > tools/acvp/requirements.txt | 7 + > 5 files changed, 507 insertions(+) > create mode 100644 tools/acvp/README > create mode 100644 tools/acvp/__init__.py > create mode 100644 tools/acvp/acvp_config.json > create mode 100755 tools/acvp/acvp_tool.py > create mode 100644 tools/acvp/requirements.txt > > -- > 2.39.2 > > --=20 Patrick Robb Technical Service Manager UNH InterOperability Laboratory 21 Madbury Rd, Suite 100, Durham, NH 03824 www.iol.unh.edu --000000000000f792d905f7919d07 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hi Aaron, Ali,

I just wanted to bump this. Is there= anything I can do to advance the review process? Obviously I could add an = ack or tested-by, but I assume that's not really too meaningful given t= he context of Jeremy and I working together.=C2=A0

On Wed, Mar 15, 2023 at 1= :30=E2=80=AFPM <jspewock@iol.unh= .edu> wrote:
From: Jeremy Spewock <jspewock@iol.unh.edu>

v1: https://mails.dpdk.org/archives/ci/20= 22-January/001599.html
v2: https://mails.dpdk.org/archives/ci/20= 22-January/001611.html
v3: https://mails.dpdk.org/archives/ci/2= 022-February/001636.html
v4: https://mails.dpdk.org/archives/ci/2022= -April/001702.html
v5:
=C2=A0 * updated out-of-date readme to better match current implementation<= br> =C2=A0 * updated default config file to support more algorithms

Brandon Lo (4):
=C2=A0 tools: add acvp_tool
=C2=A0 tools: add default config file for acvp_tool
=C2=A0 tools: add requirements file for acvp_tool
=C2=A0 doc: add readme file for acvp_tool

=C2=A0tools/acvp/README=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0| 129 +++++= ++++++++++
=C2=A0tools/acvp/__init__.py=C2=A0 =C2=A0 =C2=A0 |=C2=A0 =C2=A00
=C2=A0tools/acvp/acvp_config.json |=C2=A0 52 ++++++
=C2=A0tools/acvp/acvp_tool.py=C2=A0 =C2=A0 =C2=A0| 319 ++++++++++++++++++++= ++++++++++++++++
=C2=A0tools/acvp/requirements.txt |=C2=A0 =C2=A07 +
=C2=A05 files changed, 507 insertions(+)
=C2=A0create mode 100644 tools/acvp/README
=C2=A0create mode 100644 tools/acvp/__init__.py
=C2=A0create mode 100644 tools/acvp/acvp_config.json
=C2=A0create mode 100755 tools/acvp/acvp_tool.py
=C2=A0create mode 100644 tools/acvp/requirements.txt

--
2.39.2



--

Patrick Robb

<= span style=3D"font-size:10pt;font-family:Arial;color:rgb(0,0,0);background-= color:transparent;vertical-align:baseline;white-space:pre-wrap">Technical S= ervice Manager

UNH InterOperability Laboratory

21 Madbury Rd, Suite 100, Durham, NH 03824

www.iol.unh.edu


--000000000000f792d905f7919d07--