aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/run-all
diff options
context:
space:
mode:
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 @@
1#!/bin/sh 1#!/bin/sh
2 2
3test -x ash || { echo "No ./ash?!"; exit; } 3test -x ash || {
4 echo "No ./ash?! Perhaps you want to run 'ln -s ../../busybox ash'"
5 exit
6}
4test -x printenv || gcc -O2 -o printenv printenv.c || exit $? 7test -x printenv || gcc -O2 -o printenv printenv.c || exit $?
5test -x recho || gcc -O2 -o recho recho.c || exit $? 8test -x recho || gcc -O2 -o recho recho.c || exit $?
6test -x zecho || gcc -O2 -o zecho zecho.c || exit $? 9test -x zecho || gcc -O2 -o zecho zecho.c || exit $?
@@ -50,6 +53,7 @@ if [ $# -lt 1 ]; then
50 modules=`ls -d ash-*` 53 modules=`ls -d ash-*`
51 54
52 for module in $modules; do 55 for module in $modules; do
56 echo do_test $module
53 do_test $module 57 do_test $module
54 done 58 done
55else 59else