summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2015-06-04 17:38:38 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2015-06-04 17:38:38 +0800
commitaca32cd731eb7cb9f2aac7963bdb131b7a8b6646 (patch)
tree5aa06f5459fc4a7d0397bca3ede0023b26493a57
parent927540e851fd2ea4a281babcb3fe9738160ec00b (diff)
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 <yongqin.liu@linaro.org>
-rwxr-xr-xvellamo3/vc.py6
1 files 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):