]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/run-all
Imported from ../bash-2.04.tar.gz.
[thirdparty/bash.git] / tests / run-all
CommitLineData
726f6388
JA
1#! /bin/sh
2
d166f048 3PATH=.:$PATH # just to get recho/zecho/printenv if not run via `make tests'
726f6388 4export PATH
726f6388 5
d166f048
JA
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
ccc6cda3
JA
10
11: ${THIS_SH:=../bash}
12export THIS_SH
13
d166f048
JA
14${THIS_SH} ./version
15
bb70624e
JA
16rm -f /tmp/xx
17
d166f048
JA
18echo Any output from any test, unless otherwise noted, indicates a possible anomaly
19
726f6388
JA
20for x in run-*
21do
22 case $x in
bb70624e 23 $0|run-minimal|run-gprof) ;;
726f6388
JA
24 *.orig|*~) ;;
25 *) echo $x ; sh $x ;;
26 esac
27done
28
29exit 0