blob: 06c756ca2b36234f962ad7abbcfc43cd3f72fe28 [file] [log] [blame] [edit]
#!/system/bin/sh
#
# Busybox test.
#
# Copyright (C) 2010 - 2014, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# Author: Senthil Kumaran <senthil.kumaran@linaro.org>
# Maintainer: Amit Pundir <amit.pundir@linaro.org>
test_func(){
if [ ! -f /system/bin/busybox ]; then
echo "busybox=unexist"
exit
fi
if /system/bin/busybox [ $# -lt 1 ]; then
return 0
fi
test_cmd=$1
/system/bin/busybox "$@" 1>/dev/null 2>/dev/null
if /system/bin/busybox [ $? -ne 0 ]; then
echo "${test_cmd}=fail"
else
echo "${test_cmd}=pass"
fi
}
rm -r /data/busybox 1>/dev/null 2>/dev/null
tgt_dir="/data/local/tmp/"
test_func mkdir ${tgt_dir}/busybox
test_func touch ${tgt_dir}/busybox/test.txt
test_func ls ${tgt_dir}/busybox/test.txt
test_func ps
test_func whoami
test_func which busybox
test_func basename /data/busybox/test.txt
test_func cp ${tgt_dir}/busybox/test.txt ${tgt_dir}/busybox/test2.txt
test_func rm ${tgt_dir}/busybox/test2.txt
test_func dmesg
test_func grep service /init.rc
rm -r /data/busybox 1>/dev/null 2>/dev/null
# clean exit so that lava-test-shell can trust the results
exit 0