diff options
author | Nauman Ahad <nauman.ahad@xflowresearch.com> | 2016-01-29 12:48:00 +0000 |
---|---|---|
committer | Nauman Ahad <nauman.ahad@xflowresearch.com> | 2016-01-29 12:48:00 +0000 |
commit | 6bfa54e98b06fdd3daf9d26f9a66545402e9252c (patch) | |
tree | 41059aedc9ecb082b64b96ed3a53d2412e375cc4 /benchmarks/playbooks/result_transform/final_report.py | |
parent | 96da743d9d8fbf2245a27fbbce703bc3c55dbdda (diff) |
Test_case name included in final json result file
Change-Id: Ic4059dd58d2c5c4e9f8a00a1c419dce0994bc1bc
Signed-off-by: Nauman Ahad <nauman.ahad@xflowresearch.com>
Diffstat (limited to 'benchmarks/playbooks/result_transform/final_report.py')
-rw-r--r-- | benchmarks/playbooks/result_transform/final_report.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/benchmarks/playbooks/result_transform/final_report.py b/benchmarks/playbooks/result_transform/final_report.py index 576109bf..6a10c026 100644 --- a/benchmarks/playbooks/result_transform/final_report.py +++ b/benchmarks/playbooks/result_transform/final_report.py @@ -13,11 +13,13 @@ with open('./result_temp', 'r') as result_f: host_name = (os.popen("hostname").read().rstrip()) benchmark_name = str(sys.argv[1]) +testcase_name = str(sys.argv[2]) report_time_stamp = str(datetime.datetime.utcnow().isoformat()) final_dict = {} -final_dict['1 Time of Report'] = report_time_stamp -final_dict['2 System Information'] = sys_info_dict -final_dict['3 ' + benchmark_name + ' result'] = result_dict +final_dict['1 Testcase Name'] = testcase_name +final_dict['2 Time of Report'] = report_time_stamp +final_dict['3 System Information'] = sys_info_dict +final_dict['4 ' + benchmark_name + ' result'] = result_dict with open('./' + host_name + '-' + report_time_stamp + '.json', 'w+') as result_json: json.dump(final_dict, result_json, indent=4, sort_keys=True) |