summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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