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 44C9BA04A3 for ; Wed, 26 Jan 2022 19:16:54 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 13FB34274B; Wed, 26 Jan 2022 19:16:54 +0100 (CET) Received: from mail-qv1-f42.google.com (mail-qv1-f42.google.com [209.85.219.42]) by mails.dpdk.org (Postfix) with ESMTP id 80C0942738 for ; Wed, 26 Jan 2022 19:16:52 +0100 (CET) Received: by mail-qv1-f42.google.com with SMTP id b12so580767qvz.5 for ; Wed, 26 Jan 2022 10:16:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=XYW/zWTlYkahaXxH2zbyodur+OTADAxKygl7jZH4P24=; b=ZBM/CpdAbrIi5rMWz440kUC0bCdIlriZLjYB2/2qzMwB907Lv6AVG83wIthDySCvxN imoyKYA+C9ljna1+h1G4eiXJd2Z9Q3v/dQ7hTZLmFNvg/4xZRqW2NdfdLcxn1o80Njr1 NCHMD1DgjPRypXI8Rk2gYp9oRSyv+6oqxNTbk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=XYW/zWTlYkahaXxH2zbyodur+OTADAxKygl7jZH4P24=; b=AugCBlEW2LwaMjHeVC8e1bBdtScAdV3KbV93Q4Egh7wwfdVYIj8xek7YYGfuvKK174 tdF9Q3xb9rFt5+9zWKraHB8VKtxVtzg95sssY/X9LnNfLxapqHORWesQZWJILMPuAqyx U/TAw/rYqKIG0UhjbsZhy+wsxLZFfS/dAHsYfB07FScN8jF5a5HaiGDp+4NVD/vUvDsj zgvwb1sYK4J86VVP2d+c8eAvpKxPXg06JICQNR1hcVG4TdnyI+RUF3MTIyLBX91JSsmr WiW2RPT4O+IpoU8CQk8VJm74K60yf+XefYh9F3VtBsKvlAV1uuWREeLKPcEzWlF1oSk+ nczw== X-Gm-Message-State: AOAM531ORJUjVUroifPxCBGK83sUBLC3LHbo+HvH0Uysq7ldF6zRjEcC LlKJbn3VWYLzd0C9T5DAHRW99PCUCVgmv0bjn8aJ9fg4AO5JbjER47/ThtWK9rvTaZwByZZ/q3H 1P3rCTIgh8nIglD+AzPhVkoAQnXkNpFLagQq5kiNXNkPZxKPJYg== X-Google-Smtp-Source: ABdhPJx+jApwNerHWp1Zdx9SFtkbK3p2GXznvGDhH3z5HHU4kcHepNzO2/Dz4BkAKJQITS1XhwM3yw== X-Received: by 2002:a05:6214:762:: with SMTP id f2mr24979246qvz.0.1643221011692; Wed, 26 Jan 2022 10:16:51 -0800 (PST) Received: from blo.unh.edu (nt-238-78.w4.unh.edu. [132.177.238.78]) by smtp.gmail.com with ESMTPSA id v21sm3198qtx.13.2022.01.26.10.16.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 26 Jan 2022 10:16:51 -0800 (PST) From: Brandon Lo To: ci@dpdk.org Cc: Brandon Lo Subject: [PATCH v2 0/4] Add ACVP tool Date: Wed, 26 Jan 2022 13:16:45 -0500 Message-Id: <20220126181649.770364-1-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 v2: * Added SPDX license identifier and copyright This adds a tool for easy interaction with the ACVP API. It will handle downloading test vectors, uploading the result, and fetching the final verdict of those uploaded results. 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 requirements.txt | 7 + tools/acvp/README | 71 ++++++++ tools/acvp/__init__.py | 0 tools/acvp/acvp_config.json | 23 +++ tools/acvp/acvp_tool.py | 319 ++++++++++++++++++++++++++++++++++++ tools/acvp/requirements.txt | 7 + 6 files changed, 427 insertions(+) create mode 100644 tools/acvp/README create mode 100644 tools/acvp/__init__.py create mode 100644 tools/acvp/acvp_config.json create mode 100644 tools/acvp/acvp_tool.py create mode 100644 tools/acvp/requirements.txt -- 2.25.1