diff options
author | Christian Trautman <ctrautma@redhat.com> | 2016-04-20 16:37:51 -0400 |
---|---|---|
committer | Christian Trautman <ctrautma@redhat.com> | 2016-04-20 16:37:51 -0400 |
commit | eca9105cac5d465dfacf162200e09599c8b98c4b (patch) | |
tree | 477cc85f62ab28f173a43f1f1deae3654c883fa6 /tools/pkt_gen | |
parent | cdba631d32461d5f5916b369a9007a63891c55a6 (diff) |
xena_version: Add versioning info for report file from Xena
Adds Xena version info to report files. Works by pulling the
version info from the result file and adding it to the
settings dictionary.
JIRA: VSPERF-274
Change-Id: I2b7db30e5a621f32a7eaacfe48ab1bca498e4287
Signed-off-by: Christian Trautman <ctrautma@redhat.com>
Diffstat (limited to 'tools/pkt_gen')
-rwxr-xr-x | tools/pkt_gen/xena/xena.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/pkt_gen/xena/xena.py b/tools/pkt_gen/xena/xena.py index 969a5a88..dd23d0e5 100755 --- a/tools/pkt_gen/xena/xena.py +++ b/tools/pkt_gen/xena/xena.py @@ -75,6 +75,8 @@ class Xena(ITrafficGenerator): """ # get the test type from the report file test_type = root[0][1].get('TestType') + # set the version from the report file + settings.setValue('XENA_VERSION', root[0][0][1].get('GeneratedBy')) if test_type == 'Throughput': results = OrderedDict() |