public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
* [PATCH v2 0/5]  dts: add cryptodev testing support
@ 2026-02-10 19:34 Andrew Bailey
  2026-02-10 19:34 ` [PATCH v2 1/5] dts: add find float method to text parser Andrew Bailey
                   ` (7 more replies)
  0 siblings, 8 replies; 41+ messages in thread
From: Andrew Bailey @ 2026-02-10 19:34 UTC (permalink / raw)
  To: luca.vizzarro, probb, dev; +Cc: dmarx, Andrew Bailey

This patch series adds support to use the dpdk-test-crypto-perf
application. This application utilizes crypto devices that must be
listed in the format of a port under the `cryptodevs:` label. Along
with this, the application does not utilize a traffic generator and
therefore a new test suite decorator has been made to signify this.
Crypto tests must be enabled in test_run.yaml as `crypto: true`.
It is not supported to enable crypto testing along with functional
or performance testing. Specific capabilities of a crypto device
cannot be gathered at setup and therefore, non-relevant tests skip at
runtime. Finally, the application must be run with virtual functions
and the process of creating and binding them has been automated within
this series.

---
v2:
* Updated example yaml files for test_run and tests_config.
* Expanded test suite coverage.
* Resolved git problems where patches were removing code added by the
  previous commit.
* Updated test suite to only run tests that are configured in the
  tests_config yaml.

Andrew Bailey (5):
  dts: add find float method to text parser
  dts: add cryptodev package to DTS
  dts: add cryptodev throughput test suite
  dts: add crypto test decorator
  dts: automate VFIO-PCI modprobe in node setup

 .../tests.TestSuite_cryptodev_throughput.rst  |   8 +
 dts/api/cryptodev/__init__.py                 | 134 ++++
 dts/api/cryptodev/config.py                   | 499 +++++++++++++
 dts/api/cryptodev/types.py                    | 185 +++++
 dts/configurations/test_run.example.yaml      |   1 +
 dts/configurations/tests_config.example.yaml  |   5 +
 dts/framework/config/node.py                  |   4 +
 dts/framework/config/test_run.py              |   3 +
 dts/framework/params/types.py                 |  65 ++
 dts/framework/parser.py                       |  28 +
 dts/framework/remote_session/dpdk_shell.py    |   5 +-
 dts/framework/test_run.py                     |   5 +
 dts/framework/test_suite.py                   |   6 +
 dts/framework/testbed_model/linux_session.py  |  84 +++
 dts/framework/testbed_model/node.py           |  10 +
 dts/framework/testbed_model/os_session.py     |  34 +
 dts/framework/testbed_model/topology.py       |  92 ++-
 dts/tests/TestSuite_cryptodev_throughput.py   | 691 ++++++++++++++++++
 18 files changed, 1856 insertions(+), 3 deletions(-)
 create mode 100644 doc/api/dts/tests.TestSuite_cryptodev_throughput.rst
 create mode 100644 dts/api/cryptodev/__init__.py
 create mode 100644 dts/api/cryptodev/config.py
 create mode 100644 dts/api/cryptodev/types.py
 create mode 100644 dts/tests/TestSuite_cryptodev_throughput.py

--
2.50.1


^ permalink raw reply	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2026-03-12 20:29 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-10 19:34 [PATCH v2 0/5] dts: add cryptodev testing support Andrew Bailey
2026-02-10 19:34 ` [PATCH v2 1/5] dts: add find float method to text parser Andrew Bailey
2026-02-10 19:34 ` [PATCH v2 2/5] dts: add cryptodev package to DTS Andrew Bailey
2026-02-10 19:34 ` [PATCH v2 3/5] dts: add cryptodev throughput test suite Andrew Bailey
2026-02-10 19:34 ` [PATCH v2 4/5] dts: add crypto test decorator Andrew Bailey
2026-02-10 19:34 ` [PATCH v2 5/5] dts: automate VFIO-PCI modprobe in node setup Andrew Bailey
2026-02-13 19:35 ` [PATCH v3 0/5] dts: add cryptodev testing support Andrew Bailey
2026-02-13 19:35   ` [PATCH v3 1/5] dts: add find float method to text parser Andrew Bailey
2026-02-25 21:05     ` Patrick Robb
2026-02-13 19:35   ` [PATCH v3 2/5] dts: add cryptodev package to DTS Andrew Bailey
2026-02-25 21:06     ` Patrick Robb
2026-02-26 19:13       ` Andrew Bailey
2026-02-27 16:15     ` Patrick Robb
2026-02-13 19:35   ` [PATCH v3 3/5] dts: add cryptodev throughput test suite Andrew Bailey
2026-02-27 18:24     ` Patrick Robb
2026-02-27 19:43       ` Andrew Bailey
2026-02-13 19:35   ` [PATCH v3 4/5] dts: add crypto test decorator Andrew Bailey
2026-02-27 18:28     ` Patrick Robb
2026-02-27 19:18       ` Andrew Bailey
2026-02-13 19:35   ` [PATCH v3 5/5] dts: automate VFIO-PCI modprobe in node setup Andrew Bailey
2026-02-27 18:33     ` Patrick Robb
2026-03-02 18:54 ` [PATCH v4 0/5] dts: add cryptodev testing support Andrew Bailey
2026-03-02 18:54   ` [PATCH v4 1/5] dts: add find float method to text parser Andrew Bailey
2026-03-02 18:54   ` [PATCH v4 2/5] dts: automate VFIO-PCI modprobe in node setup Andrew Bailey
2026-03-02 18:54   ` [PATCH v4 3/5] dts: add cryptodev package to DTS Andrew Bailey
2026-03-02 18:54   ` [PATCH v4 4/5] dts: add cryptodev throughput test suite Andrew Bailey
2026-03-05 19:26     ` Patrick Robb
2026-03-05 20:20     ` Patrick Robb
2026-03-02 18:54   ` [PATCH v4 5/5] dts: add crypto test decorator Andrew Bailey
2026-03-06 16:40 ` [PATCH v5 0/5] dts: add cryptodev testing support Andrew Bailey
2026-03-06 16:40   ` [PATCH v5 1/5] dts: add find float method to text parser Andrew Bailey
2026-03-06 16:40   ` [PATCH v5 2/5] dts: automate VFIO-PCI modprobe in node setup Andrew Bailey
2026-03-06 16:40   ` [PATCH v5 3/5] dts: add cryptodev package to DTS Andrew Bailey
2026-03-09  1:26     ` Patrick Robb
2026-03-06 16:40   ` [PATCH v5 4/5] dts: add cryptodev throughput test suite Andrew Bailey
2026-03-06 16:40   ` [PATCH v5 5/5] dts: add crypto test decorator Andrew Bailey
2026-03-12 18:08     ` Thomas Monjalon
2026-03-12 18:48       ` Andrew Bailey
2026-03-12 18:55         ` Thomas Monjalon
2026-03-12 19:54       ` Patrick Robb
2026-03-12 20:29         ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox