aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/run-all
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-13 18:09:56 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-13 18:09:56 +0000
commit81887e23429bacb1d1f330f5aea706192901932a (patch)
tree1c3d7e3936eab3ec8139a45814478f26b71252bf /shell/ash_test/run-all
parent23ffb6a4a2a01fe41abe4e42d46fa16bdc2603fd (diff)
downloadbusybox-81887e23429bacb1d1f330f5aea706192901932a.tar.gz
ash: add a testcase for recently fixed signal bug
Diffstat (limited to 'shell/ash_test/run-all')
-rwxr-xr-xshell/ash_test/run-all6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/ash_test/run-all b/shell/ash_test/run-all
index 02f6d2a9d..416900aa2 100755
--- a/shell/ash_test/run-all
+++ b/shell/ash_test/run-all
@@ -1,6 +1,9 @@
#!/bin/sh
-test -x ash || { echo "No ./ash?!"; exit; }
+test -x ash || {
+ echo "No ./ash?! Perhaps you want to run 'ln -s ../../busybox ash'"
+ exit
+}
test -x printenv || gcc -O2 -o printenv printenv.c || exit $?
test -x recho || gcc -O2 -o recho recho.c || exit $?
test -x zecho || gcc -O2 -o zecho zecho.c || exit $?
@@ -50,6 +53,7 @@ if [ $# -lt 1 ]; then
modules=`ls -d ash-*`
for module in $modules; do
+ echo do_test $module
do_test $module
done
else