DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Juraj Linkeš" <juraj.linkes@pantheon.tech>
To: thomas@monjalon.net, david.marchand@redhat.com,
	Honnappa.Nagarahalli@arm.com, ohilyard@iol.unh.edu,
	lijuan.tu@intel.com
Cc: dev@dpdk.org, "Juraj Linkeš" <juraj.linkes@pantheon.tech>
Subject: [RFC PATCH v1 00/23] merge DTS test resource files to DPDK
Date: Wed,  6 Apr 2022 15:18:40 +0000	[thread overview]
Message-ID: <20220406151903.2916254-1-juraj.linkes@pantheon.tech> (raw)

Libraries and miscellaneous resources used by DTS tests.

Outstanding item:
Move testsuite-specific framework python files to tests/util.
We want to leave only framework-related files in the framework
directory. Grouping testsuite related files in one directory will make
DTS better organized.

Juraj Linkeš (23):
  dts: merge DTS framework/plotgraph.py to DPDK
  dts: merge DTS framework/plotting.py to DPDK
  dts: merge DTS framework/pmd_output.py to DPDK
  dts: merge DTS framework/qemu_kvm.py to DPDK
  dts: merge DTS framework/qemu_libvirt.py to DPDK
  dts: merge DTS framework/test_capabilities.py to DPDK
  dts: merge DTS framework/test_case.py to DPDK
  dts: merge DTS framework/virt_base.py to DPDK
  dts: merge DTS framework/virt_common.py to DPDK
  dts: merge DTS framework/virt_dut.py to DPDK
  dts: merge DTS framework/virt_resource.py to DPDK
  dts: merge DTS framework/virt_scene.py to DPDK
  dts: merge DTS nics/__init__.py to DPDK
  dts: merge DTS nics/system_info.py to DPDK
  dts: merge DTS framework/flow/__init__.py to DPDK
  dts: merge DTS framework/flow/enums.py to DPDK
  dts: merge DTS framework/flow/exceptions.py to DPDK
  dts: merge DTS framework/flow/flow.py to DPDK
  dts: merge DTS framework/flow/flow_action_items.py to DPDK
  dts: merge DTS framework/flow/flow_items.py to DPDK
  dts: merge DTS framework/flow/flow_pattern_items.py to DPDK
  dts: merge DTS framework/flow/flow_rule.py to DPDK
  dts: merge DTS framework/flow/generator.py to DPDK

 dts/framework/flow/__init__.py           |    0
 dts/framework/flow/enums.py              |  122 ++
 dts/framework/flow/exceptions.py         |   44 +
 dts/framework/flow/flow.py               |  223 +++
 dts/framework/flow/flow_action_items.py  | 1597 +++++++++++++++++
 dts/framework/flow/flow_items.py         |  128 ++
 dts/framework/flow/flow_pattern_items.py | 1219 +++++++++++++
 dts/framework/flow/flow_rule.py          |   65 +
 dts/framework/flow/generator.py          |  204 +++
 dts/framework/plotgraph.py               |  842 +++++++++
 dts/framework/plotting.py                |  246 +++
 dts/framework/pmd_output.py              |  341 ++++
 dts/framework/qemu_kvm.py                | 2042 ++++++++++++++++++++++
 dts/framework/qemu_libvirt.py            |  884 ++++++++++
 dts/framework/test_capabilities.py       |    5 +
 dts/framework/test_case.py               |  625 +++++++
 dts/framework/virt_base.py               |  553 ++++++
 dts/framework/virt_common.py             |   54 +
 dts/framework/virt_dut.py                |  463 +++++
 dts/framework/virt_resource.py           |  584 +++++++
 dts/framework/virt_scene.py              |  560 ++++++
 dts/nics/__init__.py                     |   30 +
 dts/nics/system_info.py                  |  144 ++
 23 files changed, 10975 insertions(+)
 create mode 100644 dts/framework/flow/__init__.py
 create mode 100644 dts/framework/flow/enums.py
 create mode 100644 dts/framework/flow/exceptions.py
 create mode 100644 dts/framework/flow/flow.py
 create mode 100644 dts/framework/flow/flow_action_items.py
 create mode 100644 dts/framework/flow/flow_items.py
 create mode 100644 dts/framework/flow/flow_pattern_items.py
 create mode 100644 dts/framework/flow/flow_rule.py
 create mode 100644 dts/framework/flow/generator.py
 create mode 100644 dts/framework/plotgraph.py
 create mode 100644 dts/framework/plotting.py
 create mode 100644 dts/framework/pmd_output.py
 create mode 100644 dts/framework/qemu_kvm.py
 create mode 100644 dts/framework/qemu_libvirt.py
 create mode 100644 dts/framework/test_capabilities.py
 create mode 100644 dts/framework/test_case.py
 create mode 100644 dts/framework/virt_base.py
 create mode 100644 dts/framework/virt_common.py
 create mode 100644 dts/framework/virt_dut.py
 create mode 100644 dts/framework/virt_resource.py
 create mode 100644 dts/framework/virt_scene.py
 create mode 100644 dts/nics/__init__.py
 create mode 100644 dts/nics/system_info.py

-- 
2.20.1


             reply	other threads:[~2022-04-06 15:19 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-06 15:18 Juraj Linkeš [this message]
2022-04-06 15:18 ` [RFC PATCH v1 01/23] dts: merge DTS framework/plotgraph.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 02/23] dts: merge DTS framework/plotting.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 03/23] dts: merge DTS framework/pmd_output.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 04/23] dts: merge DTS framework/qemu_kvm.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 05/23] dts: merge DTS framework/qemu_libvirt.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 06/23] dts: merge DTS framework/test_capabilities.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 07/23] dts: merge DTS framework/test_case.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 08/23] dts: merge DTS framework/virt_base.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 09/23] dts: merge DTS framework/virt_common.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 10/23] dts: merge DTS framework/virt_dut.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 11/23] dts: merge DTS framework/virt_resource.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 12/23] dts: merge DTS framework/virt_scene.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 13/23] dts: merge DTS nics/__init__.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 14/23] dts: merge DTS nics/system_info.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 15/23] dts: merge DTS framework/flow/__init__.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 16/23] dts: merge DTS framework/flow/enums.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 17/23] dts: merge DTS framework/flow/exceptions.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 18/23] dts: merge DTS framework/flow/flow.py " Juraj Linkeš
2022-04-06 15:18 ` [RFC PATCH v1 19/23] dts: merge DTS framework/flow/flow_action_items.py " Juraj Linkeš
2022-04-06 15:19 ` [RFC PATCH v1 20/23] dts: merge DTS framework/flow/flow_items.py " Juraj Linkeš
2022-04-06 15:19 ` [RFC PATCH v1 21/23] dts: merge DTS framework/flow/flow_pattern_items.py " Juraj Linkeš
2022-04-06 15:19 ` [RFC PATCH v1 22/23] dts: merge DTS framework/flow/flow_rule.py " Juraj Linkeš
2022-04-06 15:19 ` [RFC PATCH v1 23/23] dts: merge DTS framework/flow/generator.py " Juraj Linkeš

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220406151903.2916254-1-juraj.linkes@pantheon.tech \
    --to=juraj.linkes@pantheon.tech \
    --cc=Honnappa.Nagarahalli@arm.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=lijuan.tu@intel.com \
    --cc=ohilyard@iol.unh.edu \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).