From 6cf01ef2b8cff0412640b6cc87112852afee9c87 Mon Sep 17 00:00:00 2001 From: zhihui wu Date: Tue, 16 May 2017 14:11:02 +0800 Subject: delete unuse code in directory legacy Change-Id: I31427e8a59ea241e882f41222f211fffe709043f Signed-off-by: zhihui wu --- legacy/utils/transform/final_report.py | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 legacy/utils/transform/final_report.py (limited to 'legacy/utils/transform/final_report.py') diff --git a/legacy/utils/transform/final_report.py b/legacy/utils/transform/final_report.py deleted file mode 100644 index 1d7c3001..00000000 --- a/legacy/utils/transform/final_report.py +++ /dev/null @@ -1,32 +0,0 @@ -############################################################################## -# Copyright (c) 2017 ZTE Corporation and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.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) -- cgit 1.2.3-korg