#!/system/bin/sh ############################################################################# # Copyright (c) 2013 Linaro # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Linaro ############################################################################# chmod 777 /data/nativebenchmark/binderAddInts if [ -z "$1" ]; then /data/nativebenchmark/binderAddInts -n 10 else /data/nativebenchmark/binderAddInts -n $1 fi if [ $? -eq 0 ]; then echo "[bindertest]: test passed" else echo "[bindertest]: test failed" fi