chiark / gitweb /
finalise changelog
[bash.git] / debian / run-my-gprof
1 #! /bin/sh
2
3 PATH=.:$PATH    # just to get recho/zecho/printenv if not run via `make tests'
4 export PATH
5
6 # unset BASH_ENV only if it is set
7 [ "${BASH_ENV+set}" = "set" ] && unset BASH_ENV
8 # ditto for SHELLOPTS
9 #[ "${SHELLOPTS+set}" = "set" ] && unset SHELLOPTS
10
11 : ${THIS_SH:=../bash}
12 export THIS_SH
13
14 ${THIS_SH} ./version
15
16 rm -f /tmp/xx
17
18 echo Any output from any test, unless otherwise noted, indicates a possible anomaly
19
20 echo Running tests as test load ...
21
22 for x in run-*
23 do
24         case $x in
25         $0|run-minimal|run-gprof|run-all)       ;;
26         run-jobs|run-gprof)     echo SKIP $x ;;
27         *.orig|*~) ;;
28         *)      echo $x ; sh $x ;;
29         esac
30 done
31
32 exit 0