This patch series adds ability to use pre-build DPDK in various options of usage. User can specify this option from config file or cmd arguments/environment variables: * The source of DPDK (tarball or tree), * The build dir witch will be located in a subdirectory of DPDK tree root directory, otherwise will be used build configuration from config file, * Location where the DPDK source will be stored either in SUT node or local filesystem.
Tomáš Ďurovec (7): dts: rename build target to DPDK build dts: one dpdk build per test run dts: fix remote session file transfer vars dts: add the ability to copy directories via remote dts: add support for externally compiled DPDK doc: update argument options for external DPDK build dts: remove git ref option doc/guides/tools/dts.rst | 18 +- dts/conf.yaml | 17 +- dts/framework/config/__init__.py | 140 ++++++- dts/framework/config/conf_yaml_schema.json | 72 +++- dts/framework/config/types.py | 19 +- dts/framework/exception.py | 4 +- dts/framework/logger.py | 4 - dts/framework/remote_session/dpdk_shell.py | 2 +- .../remote_session/remote_session.py | 24 +- dts/framework/remote_session/ssh_session.py | 18 +- dts/framework/runner.py | 139 ++----- dts/framework/settings.py | 200 +++++++--- dts/framework/test_result.py | 124 ++---- dts/framework/test_suite.py | 2 +- dts/framework/testbed_model/node.py | 22 +- dts/framework/testbed_model/os_session.py | 209 ++++++++-- dts/framework/testbed_model/posix_session.py | 141 ++++++- dts/framework/testbed_model/sut_node.py | 366 ++++++++++++------ dts/framework/utils.py | 164 ++++---- dts/tests/TestSuite_smoke_tests.py | 2 +- 20 files changed, 1078 insertions(+), 609 deletions(-) -- 2.46.1