aboutsummaryrefslogtreecommitdiffstats
path: root/vswitches
diff options
context:
space:
mode:
authorMartin Klozik <martinx.klozik@intel.com>2016-02-11 14:13:59 +0000
committerMaryam Tahhan <maryam.tahhan@intel.com>2016-02-23 11:37:18 +0000
commit463a1fd56b516687dc4714ad87685530a0e9b8d1 (patch)
tree56cdd3fcbaf3dacb4631b6de31df0b78751a7105 /vswitches
parent9d4b0644730076007490afe0ca7ddddc3bc6b3ef (diff)
CI: Generate test report and push logs and report to the artifactory
Script for CI job execution automatically generates final test report, collects log files and pushes these results into artifactory. Support for branch specific configuration file has been added. Change-Id: Ifdf13b1c4c389f8d20dbc8e0ed99f43273e0820b JIRA: VSPERF-181 Signed-off-by: Martin Klozik <martinx.klozik@intel.com> Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'vswitches')
-rw-r--r--vswitches/ovs_dpdk_vhost.py2
-rw-r--r--vswitches/ovs_vanilla.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/vswitches/ovs_dpdk_vhost.py b/vswitches/ovs_dpdk_vhost.py
index 447ce097..2ace64a2 100644
--- a/vswitches/ovs_dpdk_vhost.py
+++ b/vswitches/ovs_dpdk_vhost.py
@@ -24,7 +24,7 @@ from src.dpdk import dpdk
_VSWITCHD_CONST_ARGS = ['--', '--pidfile', '--log-file']
class OvsDpdkVhost(IVSwitch):
- """VSwitch implementation using DPDK and vhost ports
+ """ Open vSwitch with DPDK support
Generic OVS wrapper functionality in src.ovs is maximally used. This
class wraps DPDK system configuration along with DPDK specific OVS
diff --git a/vswitches/ovs_vanilla.py b/vswitches/ovs_vanilla.py
index 77d3deaf..078d7006 100644
--- a/vswitches/ovs_vanilla.py
+++ b/vswitches/ovs_vanilla.py
@@ -26,7 +26,7 @@ _LOGGER = logging.getLogger(__name__)
VSWITCHD_CONST_ARGS = ['--', '--log-file']
class OvsVanilla(IVSwitch):
- """VSwitch Vanilla implementation
+ """ Open vSwitch
This is wrapper for functionality implemented in src.ovs.