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 1FD1EA04AD for ; Mon, 24 Jan 2022 20:09:30 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 193034117A; Mon, 24 Jan 2022 20:09:30 +0100 (CET) Received: from mail-qk1-f173.google.com (mail-qk1-f173.google.com [209.85.222.173]) by mails.dpdk.org (Postfix) with ESMTP id 2FE8D40040 for ; Mon, 24 Jan 2022 20:09:28 +0100 (CET) Received: by mail-qk1-f173.google.com with SMTP id 71so5507053qkf.4 for ; Mon, 24 Jan 2022 11:09:28 -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=xYML1+53cTNDbvoHMQDLNtd8bHLzYKpTzGSW2WmPEbg=; b=gMqwtQvH58i0xz4SxYwYgisZTKY4BVwQBf2J2UVS3546ovNULosRN7HoSJLg4msiHf Pz/MxMYGGGqg6/yq7RXkj4YUL7zap1Fuwc4N1seSHv2ceTPeZv+ZoseQvHCHcEo9TbzP HMYA3pyjy1CbVI1ncWmjJ1YLwEWaNtWHTVgEI= 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=xYML1+53cTNDbvoHMQDLNtd8bHLzYKpTzGSW2WmPEbg=; b=LM0NJDEJuv6Ao8nlpXiUmdtCW1aBeloDnqHfR4Yh74BCA0oc1n/XWnA1bbqcCEE2G9 9PemxUi7d7/lqwQp0+XSUb4wWbMOdRYnBZDQArD3CPBFNcRVhnMSATMb+XPJyeStwEBK xhKos7OEsRZjbaFOvPuyLtn4eghVkNbBbkZw9ePIxaJjOE2+iz7arF5wYuHu/R/7VIqs hCqtOv/CS8eaMlcOX5gcnL3+cDHBD6MiMxm6s/MYAnJRFqa69xK+pp39CuV0BEYU6TZY rz2ykNZ8znwkoqz0uUfyEwZfevwxgeO6bVpI71KUoe/nsCT7+5BIXSZRdnN2M8seetUS AMwA== X-Gm-Message-State: AOAM533LWzUbOcXsDv+dEcNnSodq4Nuuc6IJDx3M11niXGVvmub3cq6i /uddxT6oPtiKrPBKx3ach4aH1BtDqzNuRYvWbLITAK4BZkzEwlq3DOitS7CvL+VBYVdDGEVvWHC pyVzVpUbS9P7jHY2KUCdD/Zq9d9qTcBvC1ESTx+GsR4sivLMa6aVy X-Google-Smtp-Source: ABdhPJzU50skj1i4ttRbUjN7+46ozr0Sh/Tk9QQGHNj0EPeIBi0kg8IFRJTDi6omSaUXimeJMAleBA== X-Received: by 2002:a05:620a:4087:: with SMTP id f7mr11981749qko.407.1643051367225; Mon, 24 Jan 2022 11:09:27 -0800 (PST) Received: from blo.iol.unh.edu ([2601:187:807e:37c0:b8f3:1158:3aca:ef34]) by smtp.gmail.com with ESMTPSA id h7sm7706769qtb.15.2022.01.24.11.09.26 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 24 Jan 2022 11:09:26 -0800 (PST) From: Brandon Lo To: ci@dpdk.org Cc: Brandon Lo Subject: [PATCH 0/4] Add ACVP API tool Date: Mon, 24 Jan 2022 14:09:19 -0500 Message-Id: <20220124190923.745577-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 This patchset adds a new tool for interacting with the API for CI purposes. It comes with the script, requirements, configuration, and readme. The tool is able to register, download, and upload vector sets to the API. 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 | 71 ++++++++ tools/acvp/__init__.py | 0 tools/acvp/acvp_config.json | 23 +++ tools/acvp/acvp_tool.py | 315 ++++++++++++++++++++++++++++++++++++ tools/acvp/requirements.txt | 7 + 5 files changed, 416 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