diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-13 18:09:56 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-13 18:09:56 +0000 |
commit | 81887e23429bacb1d1f330f5aea706192901932a (patch) | |
tree | 1c3d7e3936eab3ec8139a45814478f26b71252bf /shell/ash_test/run-all | |
parent | 23ffb6a4a2a01fe41abe4e42d46fa16bdc2603fd (diff) | |
download | busybox-w32-81887e23429bacb1d1f330f5aea706192901932a.tar.gz busybox-w32-81887e23429bacb1d1f330f5aea706192901932a.tar.bz2 busybox-w32-81887e23429bacb1d1f330f5aea706192901932a.zip |
ash: add a testcase for recently fixed signal bug
Diffstat (limited to 'shell/ash_test/run-all')
-rwxr-xr-x | shell/ash_test/run-all | 6 |
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 | ||
3 | test -x ash || { echo "No ./ash?!"; exit; } | 3 | test -x ash || { |
4 | echo "No ./ash?! Perhaps you want to run 'ln -s ../../busybox ash'" | ||
5 | exit | ||
6 | } | ||
4 | test -x printenv || gcc -O2 -o printenv printenv.c || exit $? | 7 | test -x printenv || gcc -O2 -o printenv printenv.c || exit $? |
5 | test -x recho || gcc -O2 -o recho recho.c || exit $? | 8 | test -x recho || gcc -O2 -o recho recho.c || exit $? |
6 | test -x zecho || gcc -O2 -o zecho zecho.c || exit $? | 9 | test -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 |
55 | else | 59 | else |