aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/result_transform/final_report.py
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/playbooks/result_transform/final_report.py')
-rw-r--r--benchmarks/playbooks/result_transform/final_report.py8
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)