summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2016-09-22 22:54:48 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2016-09-22 22:54:48 +0800
commit1bae22eba8c50a59cc9823c90df9ed0e981e9b03 (patch)
treea1bbe4f3c456fb43734de749b5e55dd0fe4b3d83
parent3c5171d638c07869fa2b5f467186ae1ca20a31a7 (diff)
downloadlinaro-android-kernel-test-1bae22eba8c50a59cc9823c90df9ed0e981e9b03.tar.gz
binder/bindertest.sh: update path for binderAddInts
nougat has move it to /data/benchmarktest/binderAddInts/binderAddInts Change-Id: I2d5224486bce888cb8a386da8f6c02e3ba8fae48 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
-rwxr-xr-xbinder/bindertest.sh9
1 files changed, 3 insertions, 6 deletions
diff --git a/binder/bindertest.sh b/binder/bindertest.sh
index 4d58609..57cf917 100755
--- a/binder/bindertest.sh
+++ b/binder/bindertest.sh
@@ -11,12 +11,9 @@
# Linaro <linaro-dev@lists.linaro.org>
#############################################################################
-chmod 777 /data/nativebenchmark/binderAddInts
-if [ -z "$1" ]; then
- /data/nativebenchmark/binderAddInts -n 10
-else
- /data/nativebenchmark/binderAddInts -n $1
-fi
+f_binderAddInts="/data/benchmarktest/binderAddInts/binderAddInts"
+chmod 777 ${f_binderAddInts}
+${f_binderAddInts}
if [ $? -eq 0 ]; then
echo "[bindertest]: test passed"
else