From f7b4e61fcc20c5814d9b7ed5ebefbec1b549cd03 Mon Sep 17 00:00:00 2001 From: "zhifeng.jiang" Date: Fri, 7 Oct 2016 13:12:39 +0800 Subject: Refactor pushing suite result to test db modification: remove compute_suite.py,network_suite.py,storage_suite.py handler all suite result in suite_result.py refactor pushtoDB.py so that it can be called by qtip_server JIRA:QTIP-99 Change-Id: I1630a512c22cba7be038f5301f1454b8ef4f762f Signed-off-by: zhifeng.jiang --- data/ref_results/compute_benchmarks_indices.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'data/ref_results/compute_benchmarks_indices.py') diff --git a/data/ref_results/compute_benchmarks_indices.py b/data/ref_results/compute_benchmarks_indices.py index 400d54ac..9012cefc 100644 --- a/data/ref_results/compute_benchmarks_indices.py +++ b/data/ref_results/compute_benchmarks_indices.py @@ -4,7 +4,7 @@ from result_accum import result_concat as concat def dpi_index(): - dpi_dict = concat('../../results/dpi/') + dpi_dict = concat('results/dpi/') dpi_bm_ref = get_reference('compute', 'dpi_bm') dpi_bm_index = get_index(dpi_dict, 'dpi_bm', dpi_bm_ref, 'details', 'bps') @@ -20,7 +20,7 @@ def dpi_index(): def dhrystone_index(): - dhrystone_dict = concat('../../results/dhrystone/') + dhrystone_dict = concat('results/dhrystone/') dhrystone_single_bm_ref = get_reference('compute', 'dhrystone_bm', 'single_cpu') dhrystone_single_bm_index = get_index(dhrystone_dict, 'dhrystone_bm', dhrystone_single_bm_ref, 'details', 'single', 'score') @@ -46,7 +46,7 @@ def dhrystone_index(): def whetstone_index(): - whetstone_dict = concat('../../results/whetstone/') + whetstone_dict = concat('results/whetstone/') whetstone_single_bm_ref = get_reference('compute', 'whetstone_bm', 'single_cpu') whetstone_single_bm_index = get_index(whetstone_dict, 'whetstone_bm', whetstone_single_bm_ref, 'details', 'single', 'score') @@ -72,7 +72,7 @@ def whetstone_index(): def ramspeed_index(): - ramspeed_dict = concat('../../results/ramspeed/') + ramspeed_dict = concat('results/ramspeed/') ramspeed_int_bm_ref = get_reference('compute', 'ramspeed_bm', 'INTmem', 'Average (MB/s)') ramspeed_int_bm_index = get_index(ramspeed_dict, 'ramspeed_bm', ramspeed_int_bm_ref, 'details', 'int_bandwidth', 'average') @@ -99,7 +99,7 @@ def ramspeed_index(): def ssl_index(): - ssl_dict = concat('../../results/ssl/') + ssl_dict = concat('results/ssl/') ssl_RSA512b_bm_ref = get_reference('compute', 'ssl_bm', 'RSA', '512b') ssl_RSA1024b_bm_ref = get_reference('compute', 'ssl_bm', 'RSA', '1024b') -- cgit 1.2.3-korg