runtest: correctly pass shell option also for TAP tests
[platform/upstream/automake.git] / defs-static.in
1 # -*- shell-script -*-
2 # @configure_input@
3 #
4 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 # Defines and minimal setup for Automake testing environment.
20
21 # IMPORTANT NOTES AND REQUIREMENTS
22 #   - Multiple inclusions of this file should be idempotent.
23 #   - This code has to be 'set -e' clean.
24
25 # CDPATH is evil if used in non-interactive scripts (and even more
26 # evil if exported in the environment).
27 CDPATH=; unset CDPATH
28
29 # Be more Bourne compatible.
30 # (Snippet inspired to configure's initialization in Autoconf 2.64)
31 DUALCASE=1; export DUALCASE # for MKS sh
32 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
33   emulate sh
34   NULLCMD=:
35   setopt NO_GLOB_SUBST
36   # If Zsh is not started directly in POSIX-compatibility mode, it has some
37   # incompatibilities in the handling of $0 that conflict with our usage;
38   # i.e., $0 inside a file sourced with the '.' builtin is temporarily set
39   # to the name of the sourced file.  Work around that.
40   # Note that a bug in some versions of Zsh prevents us from resetting $0
41   # in a sourced script, so the use of $argv0.  For more info see:
42   #   <http://www.zsh.org/mla/workers/2009/msg01140.html>
43   # The apparently useless 'eval' here is needed by at least dash 0.5.2,
44   # to prevent it from bailing out with an error like:
45   #   "Syntax error: Bad substitution".
46   eval 'argv0=${functrace[-1]%:*}' && test -f "$argv0" || {
47     echo "Cannot determine the path of running test script." >&2
48     echo "Your Zsh (version $ZSH_VERSION) is probably too old." >&2
49     exit 99
50   }
51 else
52   argv0=$0
53   # Avoid command substitution failure, for Tru64 sh -e and instspc*.test.
54   case `(set -o) 2>/dev/null || :` in *posix*) set -o posix;; esac
55 fi
56
57 # The name of the current test (without the '.sh' or '.tap' suffix).
58 me=${argv0##*/} # Strip all directory components.
59 case $me in     # Strip test suffix.
60    *.tap) me=${me%.tap};;
61     *.sh) me=${me%.sh} ;;
62  esac
63
64 # Check that the environment is properly sanitized.
65 # Having variables exported to the empty string is OK, since our code
66 # treats such variables as if they were unset.
67 for var in \
68   required \
69   am_using_tap \
70   am_serial_tests \
71   am_create_testdir \
72   am_tap_implementation \
73   am_test_prefer_config_shell \
74   am_original_AUTOMAKE \
75   am_original_ACLOCAL \
76 ; do
77   if eval "test x\"\$$var\" != x" && env | grep "^$var=" >/dev/null; then
78     echo "$me: variable '$var' is set in the environment:" \
79          "this is unsafe" >&2
80     exit 99
81   fi
82 done
83 unset var
84
85 # See whether the current test script is expected to use TAP or not.
86 # Use a sensible default, while allowing the scripts to override this
87 # check.
88 if test -z "$am_using_tap"; then
89   case $argv0 in *.tap) am_using_tap=yes;; *) am_using_tap=no;; esac
90 fi
91
92 am_rel_srcdir='@srcdir@'
93 am_top_srcdir='@abs_srcdir@'
94 am_top_builddir='@abs_builddir@'
95
96 # Where testsuite-related helper scripts, data files and shell libraries
97 # are placed.
98 am_testauxdir=$am_top_srcdir/t/ax
99
100 # Support for the "installcheck" target.
101 case ${am_running_installcheck:=no} in
102   yes)
103     am_amdir='@amdir@'
104     am_automake_acdir='@automake_acdir@'
105     am_bindir='@bindir@'
106     am_datadir='@datadir@'
107     am_docdir='@docdir@'
108     am_pkgvdatadir='@pkgvdatadir@'
109     am_scriptdir='@scriptdir@'
110     am_system_acdir='@system_acdir@'
111     ;;
112   no)
113     am_amdir=$am_top_srcdir/lib/am
114     am_automake_acdir=$am_top_srcdir/m4
115     am_bindir=$am_top_builddir/t/wrap
116     am_datadir=$am_top_srcdir
117     am_docdir=$am_top_srcdir/doc
118     am_pkgvdatadir=$am_top_srcdir/lib
119     am_scriptdir=$am_top_srcdir/lib
120     am_system_acdir=$am_top_srcdir/m4/acdir
121     ;;
122   *)
123     echo "$me: variable 'am_running_installcheck' has invalid"
124          "value '$am_running_installcheck'" >&2
125     exit 99
126     ;;
127 esac
128
129 APIVERSION='@APIVERSION@'
130 PATH_SEPARATOR='@PATH_SEPARATOR@'
131
132 host_alias=${host_alias-'@host_alias@'}; export host_alias
133 build_alias=${build_alias-'@build_alias@'}; export build_alias
134
135 # A concurrency-safe "mkdir -p" implementation.
136 MKDIR_P=${AM_TESTSUITE_MKDIR_P-'@MKDIR_P@'}
137
138 # The shell we use to run our own test scripts, determined at configure
139 # time.  It is required in the self tests, and most importantly for the
140 # automatic re-execution of test scripts.
141 AM_TEST_RUNNER_SHELL=${AM_TEST_RUNNER_SHELL-'@AM_TEST_RUNNER_SHELL@'}
142
143 # Make sure we override the user shell.  And do not read the value of
144 # $SHELL from the environment (think to the non-uncommon situation where
145 # e.g., $SHELL=/bin/tcsh).
146 SHELL=${AM_TESTSUITE_SHELL-'@SHELL@'}; export SHELL
147
148 # User can override various tools used.  Prefer overriding specific for
149 # that automake testsuite, if they are available.
150 AWK=${AM_TESTSUITE_AWK-${AWK-'@AWK@'}}
151 PERL=${AM_TESTSUITE_PERL-${PERL-'@PERL@'}}
152 MAKE=${AM_TESTSUITE_MAKE-${MAKE-'make'}}
153 YACC=${AM_TESTSUITE_YACC-${YACC-'@YACC@'}}
154 LEX=${AM_TESTSUITE_LEX-${LEX-'@LEX@'}}
155 AUTOCONF=${AM_TESTSUITE_AUTOCONF-${AUTOCONF-'@am_AUTOCONF@'}}
156 AUTOM4TE=${AM_TESTSUITE_AUTOM4TE-${AUTOM4TE-'@am_AUTOM4TE@'}}
157 AUTORECONF=${AM_TESTSUITE_AUTORECONF-${AUTORECONF-'@am_AUTORECONF@'}}
158 AUTOHEADER=${AM_TESTSUITE_AUTOHEADER-${AUTOHEADER-'@am_AUTOHEADER@'}}
159 AUTOUPDATE=${AM_TESTSUITE_AUTOUPDATE-${AUTOUPDATE-'@am_AUTOUPDATE@'}}
160
161 # Tests who want complete control over aclocal or automake command-line
162 # options should use $am_original_ACLOCAL or $am_original_AUTOMAKE.  The
163 # "test -z" tests take care not to re-initialize them if defs-static
164 # is re-sourced, as we want defs-static to remain really idempotent.
165 if test -z "$am_original_AUTOMAKE"; then
166   am_original_AUTOMAKE=${AM_TESTSUITE_AUTOMAKE-${AUTOMAKE-"automake-$APIVERSION"}}
167 fi
168 if test -z "$am_original_ACLOCAL"; then
169   am_original_ACLOCAL=${AM_TESTSUITE_ACLOCAL-${ACLOCAL-"aclocal-$APIVERSION"}}
170 fi
171
172 # Use -Werror because this also turns some Perl warnings into error.
173 # Tests for which this is inappropriate should use -Wno-error.
174 # Tests who want complete control over aclocal command-line options
175 # should use $am_original_ACLOCAL instead.
176 ACLOCAL="$am_original_ACLOCAL -Werror"
177
178 # See how Automake should be run.  We put --foreign as the default
179 # strictness to avoid having to create lots and lots of files.  A test
180 # can override this by specifying a different strictness.  Use -Wall
181 # -Werror by default.  Tests for which this is inappropriate (e.g. when
182 # testing that a warning is enabled by a specific switch) should use
183 # -Wnone or/and -Wno-error.
184 # Tests who want complete control over automake command-line options
185 # should use $am_original_AUTOMAKE instead.
186 AUTOMAKE="$am_original_AUTOMAKE --foreign -Werror -Wall"
187
188 # POSIX no longer requires 'egrep' and 'fgrep',
189 # but some hosts lack 'grep -E' and 'grep -F'.
190 EGREP=${AM_TESTSUITE_EGREP-'@EGREP@'}
191 FGREP=${AM_TESTSUITE_FGREP-'@FGREP@'}
192
193 # Compilers and their flags.  These can point to non-GNU compilers (and
194 # on non-Linux and non-BSD systems, they probably will).
195 CC=${AM_TESTSUITE_CC-${CC-'@CC@'}}
196 CXX=${AM_TESTSUITE_CXX-${CXX-'@CXX@'}}
197 F77=${AM_TESTSUITE_F77-${F77-'@F77@'}}
198 FC=${AM_TESTSUITE_FC-${FC-'@FC@'}}
199 CFLAGS=${AM_TESTSUITE_CFLAGS-${CFLAGS-'@CFLAGS@'}}
200 CXXFLAGS=${AM_TESTSUITE_CXXFLAGS-${CXXFLAGS-'@CXXFLAGS@'}}
201 FCFLAGS=${AM_TESTSUITE_FCFLAGS-${FCFLAGS-'@FCFLAGS@'}}
202 FFLAGS=${AM_TESTSUITE_FFLAGS-${FFLAGS-'@FFLAGS@'}}
203 CPPFLAGS=${AM_TESTSUITE_CPPFLAGS-${CPPFLAGS-'@CPPFLAGS@'}}
204
205 # GNU compilers and their flags.
206 GNU_CC=${AM_TESTSUITE_GNU_CC-${GNU_CC-'@GNU_CC@'}}
207 GNU_CXX=${AM_TESTSUITE_GNU_CXX-${GNU_CXX-'@GNU_CXX@'}}
208 GNU_F77=${AM_TESTSUITE_GNU_F77-${GNU_F77-'@GNU_F77@'}}
209 GNU_FC=${AM_TESTSUITE_GNU_FC-${GNU_FC-'@GNU_FC@'}}
210 GNU_FFLAGS=${AM_TESTSUITE_GNU_FFLAGS-${GNU_FFLAGS-'@GNU_FFLAGS@'}}
211 GNU_FCFLAGS=${AM_TESTSUITE_GNU_FCFLAGS-${GNU_FCFLAGS-'@GNU_FCFLAGS@'}}
212 GNU_CXXFLAGS=${AM_TESTSUITE_GNU_CXXFLAGS-${GNU_CXXFLAGS-'@GNU_CXXFLAGS@'}}
213 GNU_CFLAGS=${AM_TESTSUITE_GNU_CFLAGS-${GNU_CFLAGS-'@GNU_CFLAGS@'}}
214 GNU_GCJ=${AM_TESTSUITE_GNU_GCJ-${GNU_GCJ-'@GNU_GCJ@'}}
215 GNU_GCJFLAGS=${AM_TESTSUITE_GNU_GCJFLAGS-${GNU_GCJFLAGS-'@GNU_GCJFLAGS@'}}
216
217 # No all versions of Tex support '--version', so we use a configure
218 # check to decide if tex is available.  This decision is embodied in
219 # this variable.
220 TEX=${AM_TESTSUITE_TEX-'@TEX@'}
221
222 # The amount we should wait after modifying files depends on the platform.
223 # For instance, Windows '95, '98 and ME have 2-second granularity
224 # and can be up to 3 seconds in the future w.r.t. the system clock.
225 sleep='sleep @MODIFICATION_DELAY@'
226
227 # An old timestamp that can be given to a file, in "touch -t" format.
228 # The time stamp should be portable to all file systems of interest.
229 # Just for fun, choose the exact time of the announcement of the GNU project
230 # in UTC; see <http://www.gnu.org/gnu/initial-announcement.html>.
231 old_timestamp=198309271735.59
232
233 # Make our wrapper script (or installed scripts, if running under
234 # "installcheck") accessible by default.  And avoid to uselessly
235 # extend $PATH multiple times if this file is sourced multiple times.
236 case $PATH in
237   $am_bindir$PATH_SEPARATOR*) ;;
238   *) PATH=$am_bindir$PATH_SEPARATOR$PATH;;
239 esac
240
241 # Make our helper script accessible by default.
242 PATH=$am_testauxdir$PATH_SEPARATOR$PATH
243
244 export PATH