From 2b172eef7185382ed4283d1868896626ae3ef5f1 Mon Sep 17 00:00:00 2001 From: "zhifeng.jiang" Date: Fri, 23 Sep 2016 11:38:35 +0800 Subject: Change result keys to lower-case and remove ' .' QTIP-93 Change-Id: I125163e05b49d9631838e89571d59a967252292e Signed-off-by: zhifeng.jiang --- benchmarks/playbooks/result_transform/final_report.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'benchmarks/playbooks/result_transform/final_report.py') 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) -- cgit 1.2.3-korg