diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2016-01-26 14:32:01 +0000 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2016-01-28 10:50:06 +0000 |
commit | 8744bcc583c734caf006116b033362e01022f7b8 (patch) | |
tree | f3563ccb3b0a25d5d6043ab72075d333c8a8f703 /tools/report/report_rst.jinja | |
parent | 265fed531348614e5aa1f0d3bed5bc526eae92d5 (diff) |
bugfix: do not report DPDK version for vanilla OVS vswitch
DPDK version check has been removed in case that OVS
does not use DPDK.
Change-Id: I78560a72e4fde3d7113165d88eb81d80f6399af8
JIRA: VSPERF-209
Signed-off-by: Martin Klozik <martinx.klozik@intel.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Reviewed-by: Al Morton <acmorton@att.com>
Reviewed-by: Brian Castelli <brian.castelli@spirent.com>
Diffstat (limited to 'tools/report/report_rst.jinja')
-rw-r--r-- | tools/report/report_rst.jinja | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/report/report_rst.jinja b/tools/report/report_rst.jinja index 1e90565f..86008d16 100644 --- a/tools/report/report_rst.jinja +++ b/tools/report/report_rst.jinja @@ -17,7 +17,9 @@ Below is the environment that the test was performed in: * vswitchperf: GIT tag: {{tests[0].env.vsperf['git_tag']}} * Traffic Generator: {{tests[0].env.traffic_gen['name']}}, Version: {{tests[0].env.traffic_gen['version']}}, GIT tag: {{tests[0].env.traffic_gen['git_tag']}} * vSwitch: {{tests[0].env.vswitch['name']}}, Version: {{tests[0].env.vswitch['version']}}, GIT tag: {{tests[0].env.vswitch['git_tag']}} +{%- if 'dpdk' in tests[0].env %} * DPDK Version: {{tests[0].env.dpdk['version']}}, GIT tag: {{tests[0].env.dpdk['git_tag']}} +{%- endif %} {%- if 'vnf' in tests[0].env %} * VNF: {{tests[0].env.vnf['name']}}, Version: {{tests[0].env.vnf['version']}}, GIT tag: {{tests[0].env.vnf['git_tag']}} * VM images:{% for guest_image in tests[0].env.guest_image %} |