From c02ac0ea76af8011afaf7241e30999326efe8105 Mon Sep 17 00:00:00 2001 From: Nauman_Ahad Date: Tue, 12 Jan 2016 14:47:37 +0500 Subject: Include Ramspeed Index calulcation Ramspeed Index calculation included. Additionally, error handling for suite indices calulcation to ignore absent result files Change-Id: I8b2360b0f16b6d3b7d8485e88a0c1f7f0787ad5a Signed-off-by: Nauman_Ahad (cherry picked from commit 90eb79018b459c1aa6606168f1ee592da535643c) --- data/ref_results/result_accum.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'data/ref_results/result_accum.py') diff --git a/data/ref_results/result_accum.py b/data/ref_results/result_accum.py index 4c600048..4fffb6b1 100644 --- a/data/ref_results/result_accum.py +++ b/data/ref_results/result_accum.py @@ -5,12 +5,12 @@ def result_concat(targ_dir): list_vm=[]; list_bm=[]; diction={}; + for file in os.listdir(targ_dir): if file.endswith(".json"): if file.startswith("instance"): print str(file) list_vm.append(file) - #echo "I am here" else: list_bm.append(file) l=len(list_bm) @@ -21,11 +21,13 @@ def result_concat(targ_dir): with open (targ_dir+file_t) as result_file: result_djson=json.load(result_file) diction['Baremetal'+str(int(x+1))]=result_djson - + for x in range (0,k): file_t=list_vm[x] with open (targ_dir+file_t) as result_file: result_djson=json.load(result_file) diction['Virtual Machine '+str(x+1)]=result_djson return diction - + + + -- cgit 1.2.3-korg