summaryrefslogtreecommitdiff
path: root/tests/run-all
blob: c4badc6bca74ddcaee5c002ff42ac4fbc5f325da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh

PATH=.:$PATH	# just to get the right version of printenv
export PATH

# unset ENV only if it is set
[ "${ENV+set}" = "set" ] && unset ENV

: ${THIS_SH:=../bash}
export THIS_SH

echo Testing ${THIS_SH}
echo Any output from any test indicates an anomaly worth investigating
for x in run-*
do
	case $x in
	$0|run-minimal)	;;
	*.orig|*~) ;;
	*)	echo $x ; sh $x ;;
	esac
done

exit 0