tests: update PATH early from AM_TESTS_ENVIRONMENT and runtest
[platform/upstream/automake.git] / runtest.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
20 set -e; set -u
21
22 : ${AM_TEST_RUNNER_SHELL='@AM_TEST_RUNNER_SHELL@'}
23 : ${AM_PROVE_CMD='prove'}
24 : ${AM_PROVEFLAGS='--merge --verbose'}
25 : ${srcdir='@srcdir@'}
26 : ${abs_srcdir='@abs_srcdir@'}
27 : ${abs_builddir='@abs_builddir@'}
28 : ${PATH_SEPARATOR='@PATH_SEPARATOR@'}
29
30 # For sourcing of extra "shell libraries" by our test scripts.  As per
31 # POSIX, sourcing a file with '.' will cause it to be looked up in $PATH
32 # in case it is given with a relative name containing no slashes.
33 if test "$srcdir" != .; then
34   PATH=$abs_srcdir/t/ax$PATH_SEPARATOR$PATH
35 fi
36 PATH=$abs_builddir/t/ax$PATH_SEPARATOR$PATH
37 export PATH
38
39 # For use by the testsuite framework.  The Automake test harness
40 # define this, so we better do the same.
41 export srcdir
42
43 error () { echo "$0: $*" >&2; exit 255; }
44
45 # Some shell flags should be passed over to the test scripts.
46 shell_opts=
47 while test $# -gt 0; do
48   case $1 in
49     --help)
50        echo "Usage: $0 [--shell=PATH] [SHELL-OPTIONS] TEST [TEST-OPTIONS]"
51        exit $?
52        ;;
53     --shell)
54        test $# -gt 1 || error "missing argument for option '$1'"
55        AM_TEST_RUNNER_SHELL=$2
56        shift
57        ;;
58     --shell=*)
59        AM_TEST_RUNNER_SHELL=${1#--shell=}
60        ;;
61     -o)
62        test $# -gt 1 || error "missing argument for option '$1'"
63        shell_opts="$shell_opts -o $2"
64        shift
65        ;;
66     -*)
67        # Assume it is an option to pass through to the shell.
68        shell_opts="$shell_opts $1";;
69      *)
70        break;;
71   esac
72   shift
73 done
74
75 test $# -gt 0 || error "missing argument"
76
77 tst=$1; shift
78
79 case $tst in
80   /*) ;;
81    *) if test -f ./$tst; then
82         tst=./$tst
83       # Support for VPATH build.
84       elif test -f $srcdir/$tst; then
85         tst=$srcdir/$tst
86       else
87         error "could not find test '$tst'"
88       fi
89       ;;
90 esac
91
92 case $tst in
93   *.sh)
94     exec $AM_TEST_RUNNER_SHELL $shell_opts "$tst" "$@" ;;
95   *.tap)
96     exec "$AM_PROVE_CMD" $AM_PROVEFLAGS -e \
97          "$AM_TEST_RUNNER_SHELL $shell_opts" "$tst" "$@" ;;
98   *)
99     error "test '$tst' has an unrecognized extension" ;;
100 esac
101
102 error "dead code reached"