From patchwork Wed Apr 6 15:07:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Juraj_Linke=C5=A1?= X-Patchwork-Id: 109250 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 56AE1A0507; Wed, 6 Apr 2022 17:07:47 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4816340DF6; Wed, 6 Apr 2022 17:07:47 +0200 (CEST) Received: from lb.pantheon.sk (lb.pantheon.sk [46.229.239.20]) by mails.dpdk.org (Postfix) with ESMTP id 97E164014F for ; Wed, 6 Apr 2022 17:07:45 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by lb.pantheon.sk (Postfix) with ESMTP id 4805B184FEA; Wed, 6 Apr 2022 17:07:44 +0200 (CEST) X-Virus-Scanned: amavisd-new at siecit.sk Received: from lb.pantheon.sk ([127.0.0.1]) by localhost (lb.pantheon.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bjRjRoN1XmIj; Wed, 6 Apr 2022 17:07:43 +0200 (CEST) Received: from entguard.lab.pantheon.local (unknown [46.229.239.141]) by lb.pantheon.sk (Postfix) with ESMTP id AA20916BC0E; Wed, 6 Apr 2022 17:07:42 +0200 (CEST) From: =?utf-8?q?Juraj_Linke=C5=A1?= To: thomas@monjalon.net, david.marchand@redhat.com, Honnappa.Nagarahalli@arm.com, ohilyard@iol.unh.edu, lijuan.tu@intel.com Cc: dev@dpdk.org, =?utf-8?q?Juraj_Linke=C5=A1?= Subject: [RFC PATCH v1 00/13] merge DTS conf files to DPDK Date: Wed, 6 Apr 2022 15:07:29 +0000 Message-Id: <20220406150742.2914878-1-juraj.linkes@pantheon.tech> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Various DTS framework configuration files. Juraj Linkeš (13): dts: merge DTS conf/crbs.cfg to DPDK dts: merge DTS conf/pktgen.cfg to DPDK dts: merge DTS conf/ports.cfg to DPDK dts: merge DTS conf/suite_sample.cfg to DPDK dts: merge DTS conf/test_case_checklist.json to DPDK dts: merge DTS conf/test_case_supportlist.json to DPDK dts: merge DTS execution.cfg to DPDK dts: merge DTS executions/execution.cfg to DPDK dts: merge DTS executions/execution_FVL.cfg to DPDK dts: merge DTS executions/execution_fm10k.cfg to DPDK dts: merge DTS executions/execution_rxmode.cfg to DPDK dts: merge DTS executions/execution_smoke.cfg to DPDK dts: merge DTS framework/settings.py to DPDK dts/conf/crbs.cfg | 42 + dts/conf/pktgen.cfg | 59 + dts/conf/ports.cfg | 24 + dts/conf/suite_sample.cfg | 8 + dts/conf/test_case_checklist.json | 3781 +++++++++++++++++++++++++++ dts/conf/test_case_supportlist.json | 2374 +++++++++++++++++ dts/execution.cfg | 10 + dts/executions/execution.cfg | 47 + dts/executions/execution_FVL.cfg | 48 + dts/executions/execution_fm10k.cfg | 29 + dts/executions/execution_rxmode.cfg | 66 + dts/executions/execution_smoke.cfg | 32 + dts/framework/settings.py | 391 +++ 13 files changed, 6911 insertions(+) create mode 100644 dts/conf/crbs.cfg create mode 100644 dts/conf/pktgen.cfg create mode 100644 dts/conf/ports.cfg create mode 100644 dts/conf/suite_sample.cfg create mode 100644 dts/conf/test_case_checklist.json create mode 100644 dts/conf/test_case_supportlist.json create mode 100644 dts/execution.cfg create mode 100644 dts/executions/execution.cfg create mode 100644 dts/executions/execution_FVL.cfg create mode 100644 dts/executions/execution_fm10k.cfg create mode 100644 dts/executions/execution_rxmode.cfg create mode 100644 dts/executions/execution_smoke.cfg create mode 100644 dts/framework/settings.py