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-all2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash_test/run-all b/shell/ash_test/run-all
index 416900aa2..e02333888 100755
--- a/shell/ash_test/run-all
+++ b/shell/ash_test/run-all
@@ -17,6 +17,7 @@ export THIS_SH
17do_test() 17do_test()
18{ 18{
19 test -d "$1" || return 0 19 test -d "$1" || return 0
20 echo do_test "$1"
20 ( 21 (
21 cd "$1" || { echo "cannot cd $1!"; exit 1; } 22 cd "$1" || { echo "cannot cd $1!"; exit 1; }
22 for x in run-*; do 23 for x in run-*; do
@@ -53,7 +54,6 @@ if [ $# -lt 1 ]; then
53 modules=`ls -d ash-*` 54 modules=`ls -d ash-*`
54 55
55 for module in $modules; do 56 for module in $modules; do
56 echo do_test $module
57 do_test $module 57 do_test $module
58 done 58 done
59else 59else