i-bash/tests/run-all

28 lines
510 B
Text
Raw Normal View History

1996-08-26 18:22:31 +00:00
#! /bin/sh
1997-06-05 14:59:13 +00:00
PATH=.:$PATH # just to get recho/zecho/printenv if not run via `make tests'
1996-08-26 18:22:31 +00:00
export PATH
1997-06-05 14:59:13 +00:00
# unset BASH_ENV only if it is set
[ "${BASH_ENV+set}" = "set" ] && unset BASH_ENV
# ditto for SHELLOPTS
#[ "${SHELLOPTS+set}" = "set" ] && unset SHELLOPTS
1996-12-23 17:02:34 +00:00
: ${THIS_SH:=../bash}
export THIS_SH
1997-06-05 14:59:13 +00:00
${THIS_SH} ./version
echo Any output from any test, unless otherwise noted, indicates a possible anomaly
1996-08-26 18:22:31 +00:00
for x in run-*
do
case $x in
1996-12-23 17:02:34 +00:00
$0|run-minimal) ;;
1996-08-26 18:22:31 +00:00
*.orig|*~) ;;
*) echo $x ; sh $x ;;
esac
done
exit 0