diff options
Diffstat (limited to 'benchmarks/playbooks/result_transform/final_report.py')
-rw-r--r-- | benchmarks/playbooks/result_transform/final_report.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/benchmarks/playbooks/result_transform/final_report.py b/benchmarks/playbooks/result_transform/final_report.py index 6a10c026..274742d4 100644 --- a/benchmarks/playbooks/result_transform/final_report.py +++ b/benchmarks/playbooks/result_transform/final_report.py @@ -15,11 +15,10 @@ 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 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 +final_dict = {"name": testcase_name, + "time": report_time_stamp, + "system_information": sys_info_dict, + "details": 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) |