randomconfig fixes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2016-06-19 18:15:33 +02:00
parent ce824aecf2
commit 015db5800c
11 changed files with 80 additions and 46 deletions

View File

@@ -6,6 +6,16 @@
. ./testing.sh
ln -s `which busybox` unknown
testing "busybox as unknown name" "./unknown 2>&1" \
"unknown: applet not found\n" "" ""
rm unknown
# We need busybox --help to be enabled for the rest of tests
test x"$CONFIG_BUSYBOX" = x"y" \
|| { echo "SKIPPED: busybox --help"; exit 0; }
HELPDUMP=`true | busybox 2>&1 | cat`
# We need to test under calling the binary under other names.
@@ -38,10 +48,4 @@ do
done
rm busybox-suffix
ln -s `which busybox` unknown
testing "busybox as unknown name" "./unknown 2>&1" \
"unknown: applet not found\n" "" ""
rm unknown
exit $FAILCOUNT