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