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 80DDF45949; Mon, 9 Sep 2024 13:03:34 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 14BC0402BB; Mon, 9 Sep 2024 13:03:33 +0200 (CEST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mails.dpdk.org (Postfix) with ESMTP id 93B4F40299 for ; Mon, 9 Sep 2024 13:03:31 +0200 (CEST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7ADF4FEC; Mon, 9 Sep 2024 04:03:59 -0700 (PDT) Received: from localhost.localdomain (JR4XG4HTQC.cambridge.arm.com [10.1.25.50]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 625A43F73B; Mon, 9 Sep 2024 04:03:30 -0700 (PDT) From: Luca Vizzarro To: dev@dpdk.org Cc: Honnappa Nagarahalli , Luca Vizzarro Subject: [PATCH v3 0/5] dts: add pktgen and testpmd changes Date: Mon, 9 Sep 2024 12:01:53 +0100 Message-Id: <20240909110158.1009592-1-luca.vizzarro@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240806121417.2567708-1-Luca.Vizzarro@arm.com> References: <20240806121417.2567708-1-Luca.Vizzarro@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 v3: - add Args to decorators docstring - added `ports_started` class stub - rebased v2: - rebased Luca Vizzarro (6): dts: add ability to send/receive multiple packets dts: add random generation seed setting dts: add random packet generator dts: add ability to start/stop testpmd ports dts: add testpmd set ports queues dts: add l2fwd test suite doc/guides/tools/dts.rst | 5 + dts/framework/config/__init__.py | 4 + dts/framework/config/conf_yaml_schema.json | 7 +- dts/framework/config/types.py | 2 + dts/framework/remote_session/testpmd_shell.py | 110 +++++++++++++++++- dts/framework/runner.py | 8 ++ dts/framework/settings.py | 17 +++ dts/framework/test_suite.py | 68 ++++++++++- dts/framework/testbed_model/tg_node.py | 14 +-- .../capturing_traffic_generator.py | 31 ----- dts/framework/utils.py | 79 ++++++++++++- dts/tests/TestSuite_l2fwd.py | 58 +++++++++ 12 files changed, 356 insertions(+), 47 deletions(-) create mode 100644 dts/tests/TestSuite_l2fwd.py -- 2.34.1