summaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/result_transform/final_report.py
diff options
context:
space:
mode:
authorwu.zhihui <wu.zhihui1@zte.com.cn>2016-11-03 11:15:50 +0800
committerwu.zhihui <wu.zhihui1@zte.com.cn>2016-11-03 11:15:50 +0800
commita9d5c798ad0da8494056181cc1b68f85f9b203c9 (patch)
tree37b450764468557e0f74807d4cf99d862bdc6827 /benchmarks/playbooks/result_transform/final_report.py
parent268c946642da7cce5801be983a032ea3993a0850 (diff)
Remove playbooks directory
Qtip will use benchmarks/perftest/. JIRA: QTIP-131 Change-Id: Icef41b6bcdcb835d76e8e412dd865d1f156f1455 Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'benchmarks/playbooks/result_transform/final_report.py')
-rw-r--r--benchmarks/playbooks/result_transform/final_report.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/benchmarks/playbooks/result_transform/final_report.py b/benchmarks/playbooks/result_transform/final_report.py
deleted file mode 100644
index 274742d4..00000000
--- a/benchmarks/playbooks/result_transform/final_report.py
+++ /dev/null
@@ -1,24 +0,0 @@
-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)