DPDK patches and discussions
 help / color / mirror / Atom feed
* [RFC PATCH v1 00/23] merge DTS test resource files to DPDK
@ 2022-04-06 15:18 Juraj Linkeš
  2022-04-06 15:18 ` [RFC PATCH v1 01/23] dts: merge DTS framework/plotgraph.py " Juraj Linkeš
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Juraj Linkeš @ 2022-04-06 15:18 UTC (permalink / raw)
  To: thomas, david.marchand, Honnappa.Nagarahalli, ohilyard, lijuan.tu
  Cc: dev, Juraj Linkeš

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


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

end of thread, other threads:[~2022-04-06 15:22 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-06 15:18 [RFC PATCH v1 00/23] merge DTS test resource files to DPDK Juraj Linkeš
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š

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).