From aca32cd731eb7cb9f2aac7963bdb131b7a8b6646 Mon Sep 17 00:00:00 2001 From: Yongqin Liu Date: Thu, 4 Jun 2015 17:38:38 +0800 Subject: vellamo3: prefix all those results with "vellamo3" so that we can find the test for vellamo3 easily in the lava-android-benchmarks-host test results. Change-Id: Ic4e995a487adc6f532f78d9ff663a0956950e7fa Signed-off-by: Yongqin Liu --- vellamo3/vc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vellamo3/vc.py b/vellamo3/vc.py index 88416fb..8756aa7 100755 --- a/vellamo3/vc.py +++ b/vellamo3/vc.py @@ -40,19 +40,19 @@ def extract_scores(filename): # Pick up the test score score = elem['score'] # Submit the result to LAVA - call([f_output_result, testcase, result, str(score), default_unit]) + call([f_output_result, "vellamo3_" + testcase, result, str(score), default_unit]) chapter_total = chapter_total + score else: print 'Corrupted test result found, please check it manually.' print 'A valid test result must contain id, score and pass/fail status.' - call([f_output_result, chapter+"_total", "pass", str(chapter_total), default_unit]) + call([f_output_result, "vellamo3_" + chapter + "_total", "pass", str(chapter_total), default_unit]) total_score = total_score + chapter_total else: print 'Cannot find ' + result_flag + ' or ' + chapter_flag + ' in test result dictionary. Please check it manually.' fileopen.close() - call([f_output_result, "total_score", "pass", str(total_score), default_unit]) + call([f_output_result, "vellamo3_total_score", "pass", str(total_score), default_unit]) def vc_dump(vc): -- cgit v1.2.3