source: vendor/bash/3.1-p17/tests/run-all

Last change on this file was 3228, checked in by bird, 18 years ago

bash 3.1

File size: 535 bytes
Line 
1#! /bin/sh
2
3PATH=.:$PATH # just to get recho/zecho/printenv if not run via `make tests'
4export 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}
12export THIS_SH
13
14${THIS_SH} ./version
15
16rm -f /tmp/xx
17
18echo Any output from any test, unless otherwise noted, indicates a possible anomaly
19
20for x in run-*
21do
22 case $x in
23 $0|run-minimal|run-gprof) ;;
24 *.orig|*~) ;;
25 *) echo $x ; sh $x ;;
26 esac
27done
28
29exit 0
Note: See TracBrowser for help on using the repository browser.