summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2016-10-19 21:18:04 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2016-10-19 21:18:04 +0800
commita46951c4ca12d6e945b1fd01b4cd1078c6fece45 (patch)
treefeb4876c924a8882c563f54ee7a00921738b2ed1 /android
parent5c86a25f24d3e961401fcad29cced0721c297758 (diff)
bionic-benchmarks.sh: disable color print
so that lava could parse the result correctly Change-Id: I14eb332c8515c7f1e8016c589468fb3a69e89868 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
Diffstat (limited to 'android')
-rwxr-xr-xandroid/scripts/bionic-benchmarks.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/scripts/bionic-benchmarks.sh b/android/scripts/bionic-benchmarks.sh
index 8f538ff..085f790 100755
--- a/android/scripts/bionic-benchmarks.sh
+++ b/android/scripts/bionic-benchmarks.sh
@@ -17,7 +17,7 @@ test_bionic_benchmark(){
fi
chmod +x ${cmd}
if [ -n "$(which ${cmd})" ]; then
- for res_line in $(${cmd}|grep "BM_"|tr -s ' '|tr ' ' ','); do
+ for res_line in $(${cmd} --color_print=false |grep "BM_"|tr -s ' '|tr ' ' ','); do
local key=$(echo $res_line|cut -d, -f1|tr '/' '_')
local iterations=$(echo $res_line|cut -d, -f2)
local ns_time=$(echo $res_line|cut -d, -f3)