aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMartin Klozik <martinx.klozik@intel.com>2017-06-21 09:54:15 +0100
committerMartin Klozik <martinx.klozik@intel.com>2017-06-23 16:38:41 +0100
commit67bed0c2b94bf7431adc44a6218b175ad6dc333a (patch)
tree166ebf6be035a64596e0ee15886bebcb3fe124e3 /tools
parent6da87d98f88ac23aa379369d573bbd1a8a1fd7b7 (diff)
ovs: Update OVS to use DPDK 17.02
Versions of VSPERF tools were updated to use OVS with DPDK 17.02 support by default. Currently used VPP version uses DPDK 17.02 already. VSPERF was updated to support new path to the dpdk devbind tool. JIRA: VSPERF-516 Change-Id: I004d0531553c974d604635d50f601cd4326f2f7d Signed-off-by: Martin Klozik <martinx.klozik@intel.com> Reviewed-by: Al Morton <acmorton@att.com> Reviewed-by: Christian Trautman <ctrautma@redhat.com> Reviewed-by: Sridhar Rao <sridhar.rao@spirent.com> Reviewed-by: Trevor Cooper <trevor.cooper@intel.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/systeminfo.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/systeminfo.py b/tools/systeminfo.py
index 20ba7ba7..75b7aa0d 100644
--- a/tools/systeminfo.py
+++ b/tools/systeminfo.py
@@ -185,7 +185,8 @@ def get_bin_version(binary, regex):
:returns: version string or None
"""
try:
- output = subprocess.check_output(binary, shell=True).decode().rstrip('\n')
+ output = str(subprocess.check_output(
+ binary, stderr=subprocess.STDOUT, shell=True).decode().rstrip('\n'))
except subprocess.CalledProcessError:
return None