2005-09-04 11:10:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Tests for busybox applet itself.
|
|
|
|
# Copyright 2005 by Rob Landley <rob@landley.net>
|
|
|
|
# Licensed under GPL v2, see file LICENSE for details.
|
|
|
|
|
|
|
|
if [ ${#COMMAND} -eq 0 ]; then COMMAND=busybox; fi
|
|
|
|
. testing.sh
|
|
|
|
|
|
|
|
HELPDUMP=`$COMMAND`
|
|
|
|
|
2005-11-07 08:50:53 +00:00
|
|
|
# We need to test under calling the binary under other names.
|
2005-09-04 11:10:37 +00:00
|
|
|
|
|
|
|
ln -s `which "$COMMAND"` busybox-suffix
|
|
|
|
ln -s `which "$COMMAND"` unknown
|
|
|
|
|
2005-09-05 16:27:19 +00:00
|
|
|
testing "busybox --help busybox" "--help busybox" "$HELPDUMP\n\n" "" ""
|
|
|
|
|
2005-09-04 11:10:37 +00:00
|
|
|
for i in busybox busybox-suffix
|
|
|
|
do
|
|
|
|
# The gratuitous "\n"s are due to a shell idiosyncrasy:
|
|
|
|
# environment variables seem to strip trailing whitespace.
|
|
|
|
|
|
|
|
testing "$i" "" "$HELPDUMP\n\n" "" ""
|
|
|
|
|
|
|
|
testing "$i unknown" "unknown 2>&1" \
|
|
|
|
"unknown: applet not found\n" "" ""
|
|
|
|
|
|
|
|
testing "$i --help" "--help 2>&1" "$HELPDUMP\n\n" "" ""
|
|
|
|
|
2005-11-07 08:50:53 +00:00
|
|
|
optional CAT
|
|
|
|
testing "$i cat" "cat" "moo" "" "moo"
|
2005-09-04 11:10:37 +00:00
|
|
|
testing "$i --help cat" "--help cat 2>&1 | grep prints" \
|
|
|
|
"Concatenates FILE(s) and prints them to stdout.\n" "" ""
|
2005-11-07 08:50:53 +00:00
|
|
|
optional ""
|
2005-09-04 11:10:37 +00:00
|
|
|
|
|
|
|
testing "$i --help unknown" "--help unknown 2>&1" \
|
|
|
|
"unknown: applet not found\n" "" ""
|
|
|
|
|
|
|
|
COMMAND=./busybox-suffix
|
|
|
|
done
|
|
|
|
|
|
|
|
COMMAND="./unknown"
|
|
|
|
testing "busybox as unknown name" "2>&1" "unknown: applet not found\n" "" ""
|
|
|
|
|
|
|
|
rm -f busybox-suffix unknown
|
|
|
|
|
|
|
|
exit $FAILCOUNT
|