summaryrefslogtreecommitdiffstats
path: root/legacy/utils/transform/final_report.py
blob: 274742d486fc093666ff8a4e725afdb73c6de0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import pickle
import json
import datetime
import os
import sys

home_dir = str((os.popen("echo $HOME").read().rstrip()))

with open('./sys_info_temp', 'r') as sys_info_f:
    sys_info_dict = pickle.load(sys_info_f)
with open('./result_temp', 'r') as result_f:
    result_dict = pickle.load(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 = {"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)