7add6881e4e0005acc40a67088b10416e81b673f
[platform/upstream/bash.git] / tests / run-all
1 #! /bin/sh
2
3 PATH=.:$PATH                    # just to get the right version of printenv
4 export PATH
5 unset ENV
6
7 echo Any output from any test indicates an anomaly worth investigating
8 for x in run-*
9 do
10         case $x in
11         $0)     ;;
12         *.orig|*~) ;;
13         *)      echo $x ; sh $x ;;
14         esac
15 done
16
17 exit 0