tests init: don't automatically re-execute tests with a POSIX shell
[platform/upstream/automake.git] / t / ax / test-runner.in
1 #!@AM_TEST_RUNNER_SHELL@
2 #
3 # Copyright (C) 2012 Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 # Run an Automake test from the command line.
19 # Usage:
20
21 set -e; set -u
22
23 : ${AM_TEST_RUNNER_SHELL='@AM_TEST_RUNNER_SHELL@'}
24 : ${AM_PROVE_CMD='prove'}
25 : ${AM_PROVEFLAGS='--merge --verbose'}
26 : ${srcdir='@srcdir@'}
27
28 error () { echo "$0: $*" >&2; exit 255; }
29
30 # Some shell flags should be passed over to the test scripts.
31 #while test $# -gt 0; do
32 #  case $1 in
33 #    --help) echo "Usage: $0 [SHELL-OPTIONS] TEST [TEST-OPTIONS]"; exit $?;;
34 #    -*)
35 #  esac
36 #done
37
38 test $# -gt 0 || error "missing argument"
39
40 tst=$1; shift
41
42 case $tst in
43    *.sh) wrapper () { exec "$@"; };;
44   *.tap) wrapper () { exec "$AM_PROVE_CMD" $AM_PROVEFLAGS -e "$@"; };;
45       *) error "test '$tst' has an unrecognized extension";;
46 esac
47
48 case $tst in
49   /*) ;;
50    *) if test -f ./$tst; then
51         tst=./$tst
52       # Support for VPATH build.
53       elif test -f $srcdir/$tst; then
54         tst=$srcdir/$tst
55       else
56         error "could not find test '$tst'"
57       fi
58       ;;
59 esac
60
61 wrapper "$AM_TEST_RUNNER_SHELL" "$tst" "$@"
62 error "dead code reached"