hust_test/*: use "$THIS_SH" instead of hush
[oweals/busybox.git] / shell / hush_test / run-all
1 #!/bin/sh
2
3 unset LANG LANGUAGE
4 unset LC_COLLATE
5 unset LC_CTYPE
6 unset LC_MONETARY
7 unset LC_MESSAGES
8 unset LC_NUMERIC
9 unset LC_TIME
10 unset LC_ALL
11
12 test -x hush || {
13     echo "No ./hush - creating a link to ../../busybox"
14     ln -s ../../busybox hush
15 }
16
17 PATH="$PWD:$PATH" # for hush and recho/zecho/printenv
18 export PATH
19
20 THIS_SH="$PWD/hush"
21 export THIS_SH
22
23 do_test()
24 {
25     test -d "$1" || return 0
26 #   echo Running tests in directory "$1"
27     (
28     tret=0
29     cd "$1" || { echo "cannot cd $1!"; exit 1; }
30     for x in run-*; do
31         test -f "$x" || continue
32         case "$x" in
33             "$0"|run-minimal|run-gprof) ;;
34             *.orig|*~) ;;
35             #*) echo $x ; sh $x ;;
36             *)
37             sh "$x" >"../$1-$x.fail" 2>&1 && \
38             { echo "$1/$x: ok"; rm "../$1-$x.fail"; } || echo "$1/$x: fail";
39             ;;
40         esac
41     done
42     # Many bash run-XXX scripts just do this,
43     # no point in duplication it all over the place
44     for x in *.tests; do
45         test -x "$x" || continue
46         name="${x%%.tests}"
47         test -f "$name.right" || continue
48 #       echo Running test: "$name.right"
49         {
50             "$THIS_SH" "./$x" >"$name.xx" 2>&1
51             diff -u "$name.xx" "$name.right" >"../$1-$x.fail" && rm -f "$name.xx" "../$1-$x.fail"
52         } && echo "$1/$x: ok" || { echo "$1/$x: fail"; tret=1; }
53     done
54     exit ${tret}
55     )
56 }
57
58 # Main part of this script
59 # Usage: run-all [directories]
60
61 ret=0
62
63 if [ $# -lt 1 ]; then
64     # All sub directories
65     modules=`ls -d hush-*`
66
67     for module in $modules; do
68         do_test $module || ret=1
69     done
70 else
71     while [ $# -ge 1 ]; do
72         if [ -d $1 ]; then
73             do_test $1 || ret=1
74         fi
75         shift
76     done
77 fi
78
79 exit ${ret}