Merge branch 'yacc-quote-fix'
[automake.git] / tests / defs
blob505a43f31ace37a3065abc0e823a21cd7b4dce97
1 # -*- shell-script -*-
3 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
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.
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.
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/>.
18 ########################################################
19 ###  IMPORTANT NOTE: keep this file 'set -e' clean.  ###
20 ########################################################
22 # NOTE: This file should execute correctly with any system's /bin/sh
23 # shell, and not only with configure-time detected $CONFIG_SHELL,
24 # *until differently and explicitly specified*.
26 ## -------------------------------------------------------- ##
27 ##  Source static setup and definitions for the testsuite.  ##
28 ## -------------------------------------------------------- ##
30 # Ensure we are running from the right directory.
31 test -f ./defs-static || {
32    echo "$0: ./defs-static: not found in current directory" >&2
33    exit 99
36 # Source the shell sanitization and variables' definitions.
37 . ./defs-static || exit 99
39 # Enable the errexit shell flag early.
40 set -e
42 # The name of the current test (without the `.test' suffix).
43 # Test scripts can override it if they need to (but this should
44 # be done carefully, and *before* including ./defs).
45 if test -z "$me"; then
46   # Guard against failure to spawn sed (seen on MSYS), or empty $argv0.
47   me=`echo "$argv0" | sed -e 's,.*[\\/],,;s/\.test$//;s/\.tap$//;'` \
48     && test -n "$me" \
49     || { echo "$argv0: failed to define \$me" >&2; exit 99; }
52 ## ---------------------- ##
53 ##  Early sanity checks.  ##
54 ## ---------------------- ##
56 # A single whitespace character.
57 sp=' '
58 # A tabulation character.
59 tab='   '
60 # A newline character.
61 nl='
64 # As autoconf-generated configure scripts do, ensure that IFS
65 # is defined initially, so that saving and restoring $IFS works.
66 IFS=$sp$tab$nl
68 # Ensure $testsrcdir is set correctly.
69 test -f "$testsrcdir/defs-static.in" || {
70    echo "$me: $testsrcdir/defs-static.in not found, check \$testsrcdir" >&2
71    exit 99
74 # Ensure $testbuilddir is set correctly.
75 test -f "$testbuilddir/defs-static" || {
76    echo "$me: $testbuilddir/defs-static not found, check \$testbuilddir" >&2
77    exit 99
81 ## ------------------------------------ ##
82 ##  Ensure we run with a proper shell.  ##
83 ## ------------------------------------ ##
85 # Make sure we run with the shell detected at configure time (unless
86 # the user forbids it).
87 case ${AM_TESTS_REEXEC-yes} in
88   n|no|false|0)
89     ;;
90   *)
91     # Ensure we can find ourselves.
92     if test ! -f "$0"; then
93       echo "$me: unable to find myself: $0" >&2
94       exit 99
95     fi
96     AM_TESTS_REEXEC=no; export AM_TESTS_REEXEC
97     # Cannot simply do `opts=$-', since the content of $- is not
98     # portable among different shells.  So try to propagate only
99     # the portable and interesting options.
100     case $- in
101       *x*v*|*v*x) opts=-vx;;
102       *v*) opts=-v;;
103       *x*) opts=-x;;
104       *) opts=;;
105     esac
106     echo $me: exec $SHELL $opts "$0" "$*"
107     exec $SHELL $opts "$0" ${1+"$@"} || {
108       echo "$me: failed to re-execute with $SHELL" >&2
109       exit 99
110     }
111     ;;
112 esac
114 # NOTE: From this point on, we can assume this file is being executed
115 # by the configure-time detected $CONFIG_SHELL.
118 ## ----------------------- ##
119 ##  Early debugging info.  ##
120 ## ----------------------- ##
122 echo "Running from installcheck: $am_running_installcheck"
123 echo "Using TAP: $am_using_tap"
124 echo "PATH = $PATH"
127 ## ---------------------- ##
128 ##  Environment cleanup.  ##
129 ## ---------------------- ##
131 # Temporarily disable this, since some shells (e.g., older version
132 # of Bash) can return a non-zero exit status upon the when a non-set
133 # variable is unset.
134 set +e
136 # Unset some make-related variables that may cause $MAKE to act like
137 # a recursively invoked sub-make.  Any $MAKE invocation in a test is
138 # conceptually an independent invocation, not part of the main
139 # 'automake' build.
140 unset MFLAGS MAKEFLAGS AM_MAKEFLAGS MAKELEVEL
141 unset __MKLVL__ MAKE_JOBS_FIFO                     # For BSD make.
142 unset DMAKE_CHILD DMAKE_DEF_PRINTED DMAKE_MAX_JOBS # For Solaris dmake.
143 # Unset verbosity flag.
144 unset V
145 # Also unset variables that will let `make -e install' divert
146 # files into unwanted directories.
147 unset DESTDIR
148 unset prefix exec_prefix bindir datarootdir datadir docdir dvidir
149 unset htmldir includedir infodir libdir libexecdir localedir mandir
150 unset oldincludedir pdfdir psdir sbindir sharedstatedir sysconfdir
151 # Unset variables that might change the "make distcheck" behaviour.
152 unset DISTCHECK_CONFIGURE_FLAGS AM_DISTCHECK_CONFIGURE_FLAGS
153 # The tests call `make -e' but we do not want $srcdir from the environment
154 # to override the definition from the Makefile.
155 unset srcdir
156 # Also unset variables that control our test driver.  While not
157 # conceptually independent, they cause some changed semantics we
158 # need to control (and test for) in some of the tests to ensure
159 # backward-compatible behavior.
160 unset TESTS_ENVIRONMENT AM_TESTS_ENVIRONMENT
161 unset DISABLE_HARD_ERRORS
162 unset AM_COLOR_TESTS
163 unset TESTS
164 unset XFAIL_TESTS
165 unset TEST_LOGS
166 unset TEST_SUITE_LOG
167 unset RECHECK_LOGS
168 unset VERBOSE
169 for pfx in TEST_ TAP_ ''; do
170   unset ${pfx}LOG_COMPILER
171   unset ${pfx}LOG_COMPILE # Not a typo!
172   unset ${pfx}LOG_FLAGS
173   unset AM_${pfx}LOG_FLAGS
174   unset ${pfx}LOG_DRIVER
175   unset ${pfx}LOG_DRIVER_FLAGS
176   unset AM_${pfx}LOG_DRIVER_FLAGS
177 done
178 unset pfx
180 # Re-enable, it had been temporarily disabled above.
181 set -e
183 ## ---------------------------- ##
184 ##  Auxiliary shell functions.  ##
185 ## ---------------------------- ##
187 # Tell whether we should keep the test directories around, even in
188 # case of success.  By default, we don't.
189 am_keeping_testdirs ()
191   case $keep_testdirs in
192      ""|n|no|NO) return 1;;
193               *) return 0;;
194   esac
197 # This is used in `Exit' and in the exit trap.  See comments in the latter
198 # for more information,
199 am__test_skipped=no
201 # We use a trap below for cleanup.  This requires us to go through
202 # hoops to get the right exit status transported through the signal.
203 # So use `Exit STATUS' instead of `exit STATUS' inside of the tests.
204 # Turn off errexit here so that we don't trip the bug with OSF1/Tru64
205 # sh inside this function.
206 Exit ()
208   set +e
209   # See comments in the exit trap for the reason we do this.
210   test 77 = $1 && am__test_skipped=yes
211   (exit $1); exit $1
214 if test $am_using_tap = yes; then
215   am_funcs_file=tap-functions.sh
216 else
217   am_funcs_file=plain-functions.sh
220 if test -f "$testsrcdir/$am_funcs_file"; then
221   . "$testsrcdir/$am_funcs_file" || {
222     echo "$me: error sourcing $testsrcdir/$am_funcs_file" >&2
223     Exit 99
224   }
225 else
226   echo "$me: $testsrcdir/$am_funcs_file not found, check \$testsrcdir" >&2
227   Exit 99
229 unset am_funcs_file
231 # cross_compiling
232 # ---------------
233 # Tell whether we are cross-compiling.  This is especially useful to skip
234 # tests (or portions of them) that requires a native compiler.
235 cross_compiling ()
237   # Quoting from the autoconf manual:
238   #   ... [$host_alias and $build both] default to the result of running
239   #   config.guess, unless you specify either --build or --host.  In
240   #   this case, the default becomes the system type you specified.
241   #   If you specify both, *and they're different*, configure enters
242   #   cross compilation mode (so it doesn't run any tests that require
243   #   execution).
244   test x"$host_alias" != x && test x"$build_alias" != x"$host_alias"
247 # is_newest FILE FILES
248 # --------------------
249 # Return false if any file in FILES is newer than FILE.
250 # Resolve ties in favor of FILE.
251 is_newest ()
253   is_newest_files=`find "$@" -prune -newer "$1"`
254   test -z "$is_newest_files"
257 # is_blocked_signal SIGNAL-NUMBER
258 # --------------------------------
259 # Return success if the given signal number is blocked in the shell,
260 # return a non-zero exit status and print a proper diagnostic otherwise.
261 is_blocked_signal ()
263   # Use perl, since trying to do this portably in the shell can be
264   # very tricky, if not downright impossible.  For reference, see:
265   # <http://lists.gnu.org/archive/html/bug-autoconf/2011-09/msg00004.html>
266   if $PERL -w -e '
267     use strict;
268     use warnings FATAL => "all";
269     use POSIX;
270     my %oldsigaction = ();
271     sigaction('"$1"', 0, \%oldsigaction);
272     exit ($oldsigaction{"HANDLER"} eq "IGNORE" ? 0 : 77);
273   '; then
274     return 0
275   elif test $? -eq 77; then
276     return 1
277   else
278     fatal_ "couldn't determine whether signal $1 is blocked"
279   fi
282 # AUTOMAKE_run [-e STATUS] [-d DESCRIPTION] [--] [AUTOMAKE-ARGS...]
283 # -----------------------------------------------------------------
284 # Run automake with AUTOMAKE-ARGS, and fail if it doesn't exit with
285 # STATUS.  Should be polymorphic for TAP and "plain" tests.  The
286 # DESCRIPTION, when provided, is used for console reporting, only if
287 # the TAP protocol is in use in the current test script.
288 AUTOMAKE_run ()
290   am__desc=
291   am__exp_rc=0
292   while test $# -gt 0; do
293     case $1 in
294       -d) am__desc=$2; shift;;
295       -e) am__exp_rc=$2; shift;;
296       --) shift; break;;
297        # Don't fail on unknown option: assume they (and the rest of the
298        # command line) are to be passed verbatim to automake (so stop our
299        # own option parsing).
300        *) break;;
301     esac
302     shift
303   done
304   am__got_rc=0
305   $AUTOMAKE ${1+"$@"} >stdout 2>stderr || am__got_rc=$?
306   cat stderr >&2
307   cat stdout
308   if test $am_using_tap != yes; then
309     test $am__got_rc -eq $am__exp_rc || Exit 1
310     return
311   fi
312   if test -z "$am__desc"; then
313     if test $am__got_rc -eq $am__exp_rc; then
314       am__desc="automake exited $am__got_rc"
315     else
316       am__desc="automake exited $am__got_rc, expecting $am__exp_rc"
317     fi
318   fi
319   command_ok_ "$am__desc" test $am__got_rc -eq $am__exp_rc
322 # AUTOMAKE_fails [-d DESCRIPTION] [OPTIONS...]
323 # --------------------------------------------
324 # Run automake with OPTIONS, and fail if doesn't exit with status `1'.
325 # Should be polymorphic for TAP and "plain" tests.  The DESCRIPTION,
326 # when provided, is used for console reporting, only if the TAP
327 # protocol is in use in the current test script.
328 AUTOMAKE_fails ()
330   AUTOMAKE_run -e 1 ${1+"$@"}
333 # extract_configure_help { --OPTION | VARIABLE-NAME } [FILES]
334 # -----------------------------------------------------------
335 # Use this to extract from the output of `./configure --help' (or similar)
336 # the description or help message associated to the given --OPTION or
337 # VARIABLE-NAME.
338 extract_configure_help ()
340   am__opt_re='' am__var_re=''
341   case $1 in
342     --*'=')   am__opt_re="^  $1";;
343     --*'[=]') am__opt_re='^  '`printf '%s\n' "$1" | sed 's/...$//'`'\[=';;
344     --*)      am__opt_re="^  $1( .*|$)";;
345       *)      am__var_re="^  $1( .*|$)";;
346   esac
347   shift
348   if test x"$am__opt_re" != x; then
349     LC_ALL=C awk '
350       /'"$am__opt_re"'/        { print; do_print = 1; next; }
351       /^$/                     { do_print = 0; next }
352       /^  --/                  { do_print = 0; next }
353       (do_print == 1)          { print }
354     ' ${1+"$@"}
355   else
356     LC_ALL=C awk '
357       /'"$am__var_re"'/        { print; do_print = 1; next; }
358       /^$/                     { do_print = 0; next }
359       /^  [A-Z][A-Z0-9_]* /    { do_print = 0; next }
360       /^  [A-Z][A-Z0-9_]*$/    { do_print = 0; next }
361       (do_print == 1)          { print }
362     ' ${1+"$@"}
363   fi
366 # grep_configure_help { --OPTION | VARIABLE-NAME } REGEXP
367 # -------------------------------------------------------
368 # Grep the section of `./configure --help' output associated with either
369 # --OPTION or VARIABLE-NAME for the given *extended* regular expression.
370 grep_configure_help ()
372   ./configure --help > am--all-help \
373     || { cat am--all-help; Exit 1; }
374   cat am--all-help
375   extract_configure_help "$1" am--all-help > am--our-help \
376     || { cat am--our-help; Exit 1; }
377   cat am--our-help
378   $EGREP "$2" am--our-help || Exit 1
381 # using_gmake
382 # -----------
383 # Return success if $MAKE is GNU make, return failure otherwise.
384 # Caches the result for speed reasons.
385 using_gmake ()
387   case $am__using_gmake in
388     yes)
389       return 0;;
390     no)
391       return 1;;
392     '')
393       # Use --version AND -v, because SGI Make doesn't fail on --version.
394       # Also grep for GNU because newer versions of FreeBSD make do
395       # not complain about `--version' (they seem to silently ignore it).
396       if $MAKE --version -v | grep GNU; then
397         am__using_gmake=yes
398         return 0
399       else
400         am__using_gmake=no
401         return 1
402       fi;;
403     *)
404       fatal_ "invalid value for \$am__using_gmake: '$am__using_gmake'";;
405   esac
407 am__using_gmake="" # Avoid interferences from the environment.
409 # make_can_chain_suffix_rules
410 # ---------------------------
411 # Return 0 if $MAKE is a make implementation that can chain suffix rules
412 # automatically, return 1 otherwise.  Caches the result for speed reasons.
413 make_can_chain_suffix_rules ()
415   if test -z "$am__can_chain_suffix_rules"; then
416     if using_gmake; then
417       am__can_chain_suffix_rules=yes
418       return 0
419     else
420       mkdir am__chain.dir$$
421       cd am__chain.dir$$
422       unindent > Makefile << 'END'
423         .SUFFIXES: .u .v .w
424         .u.v: ; cp $< $@
425         .v.w: ; cp $< $@
427       echo make can chain suffix rules > foo.u
428       if $MAKE foo.w && diff foo.u foo.w; then
429         am__can_chain_suffix_rules=yes
430       else
431         am__can_chain_suffix_rules=no
432       fi
433       cd ..
434       rm -rf am__chain.dir$$
435     fi
436   fi
437   case $am__can_chain_suffix_rules in
438     yes) return 0;;
439      no) return 1;;
440       *) fatal_ "make_can_chain_suffix_rules: internal error";;
441   esac
443 am__can_chain_suffix_rules="" # Avoid interferences from the environment.
445 # useless_vpath_rebuild
446 # ---------------------
447 # Tell whether $MAKE suffers of the bug triggering automake bug#7884.
448 # For example, this happens with FreeBSD make, since in a VPATH build
449 # it tends to rebuilt files for which there is an explicit or even just
450 # a suffix rule, even if said files are already available in the VPATH
451 # directory.
452 useless_vpath_rebuild ()
454   if test -z "$am__useless_vpath_rebuild"; then
455     if using_gmake; then
456       am__useless_vpath_rebuild=no
457       return 1
458     fi
459     mkdir am__vpath.dir$$
460     cd am__vpath.dir$$
461     touch foo.a foo.b bar baz
462     mkdir build
463     cd build
464     unindent > Makefile << 'END'
465         .SUFFIXES: .a .b
466         VPATH = ..
467         all: foo.b baz
468         .PHONY: all
469         .a.b: ; cp $< $@
470         baz: bar ; cp ../baz bar
472     if $MAKE all && test ! -f foo.b && test ! -f bar; then
473       am__useless_vpath_rebuild=no
474     else
475       am__useless_vpath_rebuild=yes
476     fi
477     cd ../..
478     rm -rf am__vpath.dir$$
479   fi
480   case $am__useless_vpath_rebuild in
481     yes) return 0;;
482      no) return 1;;
483      "") ;;
484       *) fatal_ "no_useless_builddir_remake: internal error";;
485   esac
487 am__useless_vpath_rebuild=""
489 yl_distcheck () { useless_vpath_rebuild || $MAKE distcheck ${1+"$@"}; }
491 # seq_ - print a sequence of numbers
492 # ----------------------------------
493 # This function simulates GNU seq(1) portably.  Valid usages:
494 #  - seq LAST
495 #  - seq FIRST LAST
496 #  - seq FIRST INCREMENT LAST
497 seq_ ()
499   case $# in
500     0) fatal_ "seq_: missing argument";;
501     1) seq_first=1  seq_incr=1  seq_last=$1;;
502     2) seq_first=$1 seq_incr=1  seq_last=$2;;
503     3) seq_first=$1 seq_incr=$2 seq_last=$3;;
504     *) fatal_ "seq_: too many arguments";;
505   esac
506   # Try to avoid forks if possible.
507   case "$BASH_VERSION" in
508     ""|[12].*)
509       : Not bash, or a too old bash version. ;;
510     *)
511       # Use eval to protect dumber shells from parsing errors.
512       eval 'for ((i = seq_first; i <= seq_last; i += seq_incr)); do
513               echo $i
514             done'
515       return 0;;
516   esac
517   # Else, use GNU seq if available.
518   seq "$@" && return 0
519   # Otherwise revert to a slower loop using expr(1).
520   i=$seq_first
521   while test $i -le $seq_last; do
522     echo $i
523     i=`expr $i + $seq_incr`
524   done
527 # rm_rf_ [FILES OR DIRECTORIES ...]
528 # ---------------------------------
529 # Recursively remove the given files or directory, also handling the case
530 # of non-writable subdirectories.
531 rm_rf_ ()
533   test $# -gt 0 || return 0
534   # Ignore failures in find, we are only interested in failures of the
535   # final rm.
536   find "$@" -type d ! -perm -700 -exec chmod u+rwx {} \; || :
537   rm -rf "$@"
540 # count_test_results total=N pass=N fail=N xpass=N xfail=N skip=N error=N
541 # -----------------------------------------------------------------------
542 # Check that a testsuite run driven by the parallel-tests harness has
543 # had the specified numbers of test results (specified by kind).
544 # This function assumes that the output of "make check" or "make recheck"
545 # has been saved in the `stdout' file in the current directory, and its
546 # log in the `test-suite.log' file.
547 count_test_results ()
549   # Use a subshell so that we won't pollute the script namespace.
550   (
551     # TODO: Do proper checks on the arguments?
552     total=ERR pass=ERR fail=ERR xpass=ERR xfail=ERR skip=ERR error=ERR
553     eval "$@"
554     # For debugging.
555     $EGREP -i '(total|x?pass|x?fail|skip|error)' stdout || :
556     rc=0
557     # Avoid spurious failures with shells with "overly sensible"
558     # `errexit' shell flag, such as e.g., Solaris /bin/sh.
559     set +e
560     test `grep -c '^PASS:'  stdout` -eq $pass  || rc=1
561     test `grep -c '^XFAIL:' stdout` -eq $xfail || rc=1
562     test `grep -c '^SKIP:'  stdout` -eq $skip  || rc=1
563     test `grep -c '^FAIL:'  stdout` -eq $fail  || rc=1
564     test `grep -c '^XPASS:' stdout` -eq $xpass || rc=1
565     test `grep -c '^ERROR:' stdout` -eq $error || rc=1
566     grep "^# TOTAL:  *$total$" stdout || rc=1
567     grep "^# PASS:  *$pass$"   stdout || rc=1
568     grep "^# XFAIL:  *$xfail$" stdout || rc=1
569     grep "^# SKIP:  *$skip$"   stdout || rc=1
570     grep "^# FAIL:  *$fail$"   stdout || rc=1
571     grep "^# XPASS:  *$xpass$" stdout || rc=1
572     grep "^# ERROR:  *$error$" stdout || rc=1
573     test $rc -eq 0
574   )
577 commented_sed_unindent_prog='
578   /^$/b                    # Nothing to do for empty lines.
579   x                        # Get x<indent> into pattern space.
580   /^$/{                    # No prior x<indent>, go prepare it.
581     g                      # Copy this 1st non-blank line into pattern space.
582     s/^\(['"$tab"' ]*\).*/x\1/   # Prepare x<indent> in pattern space.
583   }                        # Now: x<indent> in pattern and <line> in hold.
584   G                        # Build x<indent>\n<line> in pattern space, and
585   h                        # duplicate it into hold space.
586   s/\n.*$//                # Restore x<indent> in pattern space, and
587   x                        # exchange with the above duplicate in hold space.
588   s/^x\(.*\)\n\1//         # Remove leading <indent> from <line>.
589   s/^x.*\n//               # Restore <line> when there is no leading <indent>.
592 # unindent [input files...]
593 # -------------------------
594 # Remove the "proper" amount of leading whitespace from the given files,
595 # and output the result on stdout.  That amount is determined by looking
596 # at the leading whitespace of the first non-blank line in the input
597 # files.  If no input file is specified, standard input is implied.
598 unindent ()
600   if test x"$sed_unindent_prog" = x; then
601     sed_unindent_prog=`printf '%s\n' "$commented_sed_unindent_prog" | sed -e "s/  *# .*//"`
602   fi
603   sed "$sed_unindent_prog" ${1+"$@"}
605 sed_unindent_prog="" # Avoid interferences from the environment.
607 # get_shell_script SCRIPT-NAME
608 # -----------------------------
609 # Fetch an Automake-provided shell script from the `lib/' directory into
610 # the current directory, and, if the `$am_test_prefer_config_shell'
611 # variable is set to "yes", modify its shebang line to use $SHELL instead
612 # of /bin/sh.
613 get_shell_script ()
615   if test x"$am_test_prefer_config_shell" = x"yes"; then
616     sed "1s|#!.*|#! $SHELL|" "$am_scriptdir/$1" > "$1"
617     chmod a+x "$1"
618   else
619     cp "$am_scriptdir/$1" .
620   fi
621   sed 10q "$1" # For debugging.
624 # require_xsi SHELL
625 # -----------------
626 # Skip the test if the given shell fails to support common XSI constructs.
627 require_xsi ()
629   test $# -eq 1 || fatal_ "require_xsi needs exactly one argument"
630   echo "$me: trying some XSI constructs with $1"
631   $1 -c "$xsi_shell_code" || skip_all_ "$1 lacks XSI features"
633 # Shell code supposed to work only with XSI shells.  Keep this in sync
634 # with libtool.m4:_LT_CHECK_SHELL_FEATURES.
635 xsi_shell_code='
636   _lt_dummy="a/b/c"
637   test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
638       = c,a/b,b/c, \
639     && eval '\''test $(( 1 + 1 )) -eq 2 \
640     && test "${#_lt_dummy}" -eq 5'\'
642 # fetch_tap_driver
643 # ----------------
644 # Fetch the Automake-provided TAP driver from the `lib/' directory into
645 # the current directory, and edit its shebang line so that it will be
646 # run with the perl interpreter determined at configure time.
647 fetch_tap_driver ()
649   # TODO: we should devise a way to make the shell TAP driver tested also
650   # TODO: with /bin/sh, for better coverage.
651   case $am_tap_implementation in
652     perl)
653       $PERL -MTAP::Parser -e 1 \
654         || skip_all_ "cannot import TAP::Parser perl module"
655       sed "1s|#!.*|#! $PERL -w|" "$am_scriptdir"/tap-driver.pl >tap-driver
656       ;;
657     shell)
658       sed "1s|#!.*|#! $SHELL|" "$am_scriptdir"/tap-driver.sh >tap-driver
659       ;;
660     *)
661       fatal_ "invalid \$am_tap_implementation '$am_tap_implementation'" ;;
662   esac \
663     && chmod a+x tap-driver \
664     || framework_failure_ "couldn't fetch $am_tap_implementation TAP driver"
665   sed 10q tap-driver # For debugging.
667 # The shell/awk implementation of the TAP driver is still mostly dummy, so
668 # use the perl implementation by default for the moment.
669 am_tap_implementation=${am_tap_implementation-shell}
671 # Usage: require_compiler_ {cc|c++|fortran|fortran77}
672 require_compiler_ ()
674   case $# in
675     0) fatal_ "require_compiler_: missing argument";;
676     1) ;;
677     *) fatal_ "require_compiler_: too many arguments";;
678   esac
679   case $1 in
680     cc)
681       am__comp_lang="C"
682       am__comp_var=CC
683       am__comp_flag_vars='CFLAGS CPPFLAGS'
684       ;;
685     c++)
686       am__comp_lang="C++"
687       am__comp_var=CXX
688       am__comp_flag_vars='CXXFLAGS CPPFLAGS'
689       ;;
690     fortran)
691       am__comp_lang="Fortran"
692       am__comp_var=FC
693       am__comp_flag_vars='FCFLAGS'
694       ;;
695     fortran77)
696       am__comp_lang="Fortran 77"
697       am__comp_var=F77
698       am__comp_flag_vars='FFLAGS'
699       ;;
700   esac
701   shift
702   eval "am__comp_prog=\${$am__comp_var}" \
703     || fatal_ "expanding \${$am__comp_var} in require_compiler_"
704   case $am__comp_prog in
705     "")
706       fatal_ "botched configuration: \$$am__comp_var is empty";;
707     false)
708       skip_all_ "no $am__comp_lang compiler available";;
709     autodetect|autodetected)
710       # Let the ./configure commands in the test script try to determine
711       # these automatically.
712       unset $am__comp_var $am__comp_flag_vars;;
713     *)
714       # Pre-set these for the ./configure commands in the test script.
715       export $am__comp_var $am__comp_flag_vars;;
716   esac
717   # Delete private variables.
718   unset am__comp_lang am__comp_prog am__comp_var am__comp_flag_vars
721 ## ----------------------------------------------------------- ##
722 ##  Checks for required tools, and additional setups (if any)  ##
723 ##  required by them.                                          ##
724 ## ----------------------------------------------------------- ##
726 # So that we can force the use of correct gcc, g++ etc., consistently
727 # with cross-compilation settings.
728 if cross_compiling; then
729   am__tool_prefix="$host_alias-"
730 else
731   am__tool_prefix=
734 # Look for (and maybe set up) required tools and/or system features; skip
735 # the current test if they are not found.
736 for tool in : $required
738   # Check that each required tool is present.
739   case $tool in
740     :) ;;
741     cc|c++|fortran|fortran77)
742       require_compiler_ $tool;;
743     xsi-shell)
744       require_xsi "$SHELL";;
745     xsi-bin-sh)
746       require_xsi "/bin/sh";;
747     xsi-lib-shell)
748       if test x"$am_test_prefer_config_shell" = x"yes"; then
749         require_xsi "$SHELL"
750       else
751         require_xsi "/bin/sh"
752       fi
753       ;;
754     bzip2)
755       # Do not use --version, bzip2 still tries to compress stdin.
756       echo "$me: running bzip2 --help"
757       bzip2 --help \
758         || skip_all_ "required program \`bzip2' not available"
759       ;;
760     cl)
761       CC=cl
762       # Don't export CFLAGS, as that could have been initialized to only
763       # work with the C compiler detected at configure time.  If the user
764       # wants CFLAGS to also influence `cl', he can still export CFLAGS
765       # in the environment "by hand" before calling the testsuite.
766       export CC CPPFLAGS
767       echo "$me: running $CC -?"
768       $CC -? || skip_all_ "Microsoft C compiler \`$CC' not available"
769       ;;
770     cscope)
771       # Sun cscope is interactive without redirection.
772       echo "$me: running cscope --version </dev/null"
773       cscope --version </dev/null \
774         || skip_all_ "required program \`cscope' not available"
775       ;;
776     cygpath)
777       echo "$me: running cygpath --version"
778       cygpath --version || skip_all_ "cygpath not available"
779       ;;
780     etags)
781       # Exuberant Ctags will create a TAGS file even
782       # when asked for --help or --version.  (Emacs's etags
783       # does not have such problem.)  Use -o /dev/null
784       # to make sure we do not pollute the tests/ directory.
785       echo "$me: running etags --version -o /dev/null"
786       etags --version -o /dev/null \
787         || skip_all_ "required program \`etags' not available"
788       ;;
789     GNUmake)
790       for make_ in "$MAKE" gmake gnumake :; do
791         MAKE=$make_ am__using_gmake=''
792         test "$MAKE" =  : && break
793         echo "$me: determine whether $MAKE is GNU make"
794         # Don't use "&&" here, or a bug of 'set -e' present in some
795         # versions of the BSD shell will be triggered.  We add the
796         # dummy "else" branch for extra safety.
797         if using_gmake; then break; else :; fi
798       done
799       test "$MAKE" = : && skip_all_ "this test requires GNU make"
800       export MAKE
801       unset make_
802       ;;
803     gcc)
804       # When gcc is required, export `CC=gcc' so that ./configure
805       # always use it.  This is important only when the user
806       # has defined CC in his environment, otherwise ./configure will
807       # prefer gcc to other compilers.
808       CC=${am__tool_prefix}gcc
809       CFLAGS=$GNU_CFLAGS
810       export CC CFLAGS CPPFLAGS
811       echo "$me: running $CC --version"
812       $CC --version || skip_all_ "GNU C compiler not available"
813       echo "$me: running $CC -v"
814       $CC -v || skip_all_ "botched installation for GNU C compiler"
815       ;;
816     gcj)
817       GCJ=${am__tool_prefix}gcj
818       export GCJ
819       echo "$me: running $GCJ --version"
820       $GCJ --version || skip_all_ "GNU Java compiler not available"
821       echo "$me: running $GCJ -v"
822       $GCJ -v || skip_all_ "botched installation for GNU Java compiler"
823       ;;
824     g++)
825       CXX=${am__tool_prefix}g++
826       CXXFLAGS=$GNU_CXXFLAGS
827       export CXX CXXFLAGS CPPFLAGS
828       echo "$me: running $CXX --version"
829       $CXX --version || skip_all_ "GNU C++ compiler not available"
830       echo "$me: running $CXX -v"
831       $CXX -v || skip_all_ "botched installation for GNU C++ compiler"
832       ;;
833     gfortran)
834       FC=${am__tool_prefix}gfortran
835       FCFLAGS=$GNU_FCFLAGS
836       export FC FCFLAGS
837       echo "$me: running $FC --version"
838       $FC --version || skip_all_ "GNU Fortran compiler not available"
839       echo "$me: running $FC -v"
840       $FC -v || skip_all_ "botched installation for GNU Fortran compiler"
841       case " $required " in
842         *\ g77\ *) ;;
843         *) F77=$FC FFLAGS=$FCFLAGS; export F77 FFLAGS;;
844       esac
845       ;;
846     g77)
847       F77=${am__tool_prefix}g77
848       FFLAGS=$GNU_FFLAGS
849       export F77 FFLAGS
850       echo "$me: running $F77 --version"
851       $F77 --version || skip_all_ "GNU Fortran 77 compiler not available"
852       echo "$me: running $F77 -v"
853       $F77 -v || skip_all_ "botched installation for GNU Fortran 77 compiler"
854       case " $required " in
855         *\ gfortran\ *) ;;
856         *) FC=$F77 FCFLAGS=$FFLAGS; export FC FCFLAGS;;
857       esac
858       ;;
859     icc)
860       CC=icc
861       export CC CPPFLAGS # But not CFLAGS (see comments for `cl' above).
862       # There is no way to ask *only* the compiler's version.
863       # This tool always wants to do something (by default
864       # it will try link *nothing* and complain it cannot find
865       # main(); funny).  Use -help so it does not try linking anything.
866       echo "$me: running $CC -V -help"
867       $CC -V -help || skip_all_ "Intel C compiler \`$CC' not available"
868       ;;
869     javac)
870       # The Java compiler from JDK 1.5 (and presumably earlier versions)
871       # cannot handle the `-version' option by itself: it bails out
872       # telling that source files are missing.  Adding also the `-help'
873       # option seems to solve the problem.
874       echo "$me: running javac -version -help"
875       javac -version -help || skip_all_ "Sun Java compiler not available"
876       ;;
877     java)
878       # See the comments above about `javac' for why we use also `-help'.
879       echo "$me: running java -version -help"
880       java -version -help || skip_all_ "Sun Java interpreter not found"
881       ;;
882     lib)
883       AR=lib
884       export AR
885       # Attempting to create an empty archive will actually not
886       # create the archive, but lib will output its version.
887       echo "$me: running $AR -out:defstest.lib"
888       $AR -out:defstest.lib \
889         || skip_all_ "Microsoft \`lib' utility not available"
890       ;;
891     makedepend)
892       echo "$me: running makedepend -f-"
893       makedepend -f- \
894         || skip_all_ "required program \`makedepend' not available"
895       ;;
896     makeinfo-html)
897       # Make sure we have makeinfo, and it understands `--html'.
898       echo "$me: running makeinfo --html --version"
899       makeinfo --html --version \
900         || skip_all_ "cannot find a makeinfo program that groks the" \
901                  "\`--html' option"
902       ;;
903     mingw)
904       uname_s=`uname -s || echo UNKNOWN`
905       echo "$me: system name: $uname_s"
906       case $uname_s in
907         MINGW*) ;;
908         *) skip_all_ "this test requires MSYS in MinGW mode" ;;
909       esac
910       ;;
911     non-root)
912       # Skip this test case if the user is root.
913       # We try to append to a read-only file to detect this.
914       priv_check_temp=priv-check.$$
915       touch $priv_check_temp && chmod a-w $priv_check_temp \
916         || framework_failure_ "creating unwritable file $priv_check_temp"
917       # Not a useless use of subshell: lesser shells like Solaris /bin/sh
918       # can exit if a builtin fails.
919       overwrite_status=0
920       (echo foo >> $priv_check_temp) || overwrite_status=$?
921       rm -f $priv_check_temp
922       if test $overwrite_status -eq 0; then
923         skip_all_ "cannot drop file write permissions"
924       fi
925       unset priv_check_temp overwrite_status
926       ;;
927     perl-threads)
928       if test "$WANT_NO_THREADS" = "yes"; then
929         skip_all_ "Devel::Cover cannot cope with threads"
930       fi
931       ;;
932     native)
933       # Don't use "&&" here, to avoid a bug of 'set -e' present in
934       # some (even relatively recent) versions of the BSD shell.
935       # We add the dummy "else" branch for extra safety.
936       if cross_compiling; then
937         skip_all_ "doesn't work in cross-compile mode"
938       else :; fi
939       ;;
940     python)
941       # Python doesn't support --version, it has -V
942       echo "$me: running python -V"
943       python -V || skip_all_ "python interpreter not available"
944       ;;
945     ro-dir)
946       # Skip this test case if read-only directories aren't supported
947       # (e.g., under DOS.)
948       ro_dir_temp=ro_dir.$$
949       mkdir $ro_dir_temp && chmod a-w $ro_dir_temp \
950         || framework_failure_ "creating unwritable directory $ro_dir_temp"
951       # Not a useless use of subshell: lesser shells like Solaris /bin/sh
952       # can exit if a builtin fails.
953       create_status=0
954       (: > $ro_dir_temp/probe) || create_status=$?
955       rm -rf $ro_dir_temp
956       if test $create_status -eq 0; then
957         skip_all_ "cannot drop directory write permissions"
958       fi
959       unset ro_dir_temp create_status
960       ;;
961     runtest)
962       # DejaGnu's runtest program. We rely on being able to specify
963       # the program on the runtest command-line. This requires
964       # DejaGnu 1.4.3 or later.
965       echo "$me: running runtest SOMEPROGRAM=someprogram --version"
966       runtest SOMEPROGRAM=someprogram --version \
967         || skip_all_ "DejaGnu is not available"
968       ;;
969     tex)
970       # No all versions of Tex support `--version', so we use
971       # a configure check.
972       if test -z "$TEX"; then
973         skip_all_ "TeX is required, but it wasn't found by configure"
974       fi
975       ;;
976     texi2dvi-o)
977       # Texi2dvi supports `-o' since Texinfo 4.1.
978       echo "$me: running texi2dvi -o /dev/null --version"
979       texi2dvi -o /dev/null --version \
980         || skip_all_ "required program \`texi2dvi' not available"
981       ;;
982     lex)
983       test x"$LEX" = x"false" && skip_all_ "lex not found or disabled"
984       export LEX
985       ;;
986     yacc)
987       test x"$YACC" = x"false" && skip_all_ "yacc not found or disabled"
988       export YACC
989       ;;
990     flex)
991       LEX=flex; export LEX
992       echo "$me: running flex --version"
993       flex --version || skip_all_ "required program \`flex' not available"
994       ;;
995     bison)
996       YACC='bison -y'; export YACC
997       echo "$me: running bison --version"
998       bison --version || skip_all_ "required program \`bison' not available"
999       ;;
1000     *)
1001       # Generic case: the tool must support --version.
1002       echo "$me: running $tool --version"
1003       # It is not likely but possible that $tool is a special builtin,
1004       # in which case the shell is allowed to exit after an error.
1005       # So, please leave the subshell here.
1006       ($tool --version) || skip_all_ "required program \`$tool' not available"
1007       ;;
1008   esac
1009 done
1011 # Using just `$testbuilddir' for the check here is ok, since the
1012 # further temporary subdirectory where the test will be run is
1013 # ensured not to contain any whitespace character.
1014 case $testbuilddir in
1015   *\ *|*\       *)
1016     case " $required " in
1017       *' libtool '* | *' libtoolize '* )
1018         skip_all_ "libtool has problems with spaces in builddir name";;
1019     esac
1020     ;;
1021 esac
1023 # This test is necessary, although Automake's configure script bails out
1024 # when $srcdir contains spaces.  This is because $testsrcdir is in not
1025 # configure-time $srcdir, but is instead configure-time $abs_srcdir, and
1026 # that is allowed to contain spaces.
1027 case $testsrcdir in
1028   *\ * |*\      *)
1029     case " $required " in
1030       *' libtool '* | *' libtoolize '* | *' gettext '* )
1031         skip_all_ "spaces in srcdir name: libtool/gettext tests won't work";;
1032    esac
1033    ;;
1034 esac
1036 # We might need extra macros, e.g., from Libtool or Gettext.
1037 case " $required " in *\ libtool*) . ./libtool-macros.dir/get.sh;; esac
1038 case " $required " in *\ gettext*) . ./gettext-macros.dir/get.sh;; esac
1041 ## ---------------------------------------------------------------- ##
1042 ##  Create and set up of the temporary directory used by the test.  ##
1043 ##  Set up of the exit trap for cleanup of said directory.          ##
1044 ## ---------------------------------------------------------------- ##
1046 # This might be used in testcases checking distribution-related features.
1047 # Test scripts are free to override this if they need to.
1048 distdir=$me-1.0
1050 # Set up the exit trap.
1051 if test "$sh_errexit_works" = yes; then
1052   trap 'exit_status=$?
1053     set +e
1054     cd "$testbuilddir"
1055     if test $am_using_tap = yes; then
1056       if test "$planned_" = later && test $exit_status -eq 0; then
1057         plan_ "now"
1058       fi
1059       test $exit_status -eq 0 && test $tap_pass_count_ -eq $tap_count_ \
1060         || keep_testdirs=yes
1061     else
1062       # This is to ensure that a test script does give a SKIP outcome just
1063       # because a command in it happens to exit with status 77.  This
1064       # behaviour, while from time to time useful to developers, is not
1065       # meant to be enabled by default, as it could cause spurious failures
1066       # in the wild.  Thus it will be enabled only when the variable
1067       # "am_explicit_skips" is set to a "true" value.
1068       case $am_explicit_skips in
1069         [yY]|[yY]es|1)
1070           if test $exit_status -eq 77 && test $am__test_skipped != yes; then
1071             echo "$me: implicit skip turned into failure"
1072             exit_status=78
1073           fi;;
1074       esac
1075       test $exit_status -eq 0 || keep_testdirs=yes
1076     fi
1077     am_keeping_testdirs || rm_rf_ $testSubDir
1078     set +x
1079     echo "$me: exit $exit_status"
1080     exit $exit_status
1081   ' 0
1082   trap "fatal_ 'caught signal SIGHUP'" 1
1083   trap "fatal_ 'caught signal SIGINT'" 2
1084   trap "fatal_ 'caught signal SIGTERM'" 15
1085   # Various shells seems to just ignore SIGQUIT under some circumstances,
1086   # even if the signal is not blocked; however, if the signal it trapped,
1087   # the trap gets correctly executed.  So we also trap SIGQUIT.
1088   # Here is a list of some shells that have been verified to exhibit the
1089   # problematic behavior with SIGQUIT:
1090   #  - zsh 4.3.12 on Debian GNU/Linux
1091   #  - /bin/ksh and /usr/xpg4/bin/sh on Solaris 10
1092   #  - Bash 3.2.51 on Solaris 10 and bash 4.1.5 on Debian GNU/Linux
1093   #  - AT&T ksh on Debian Gnu/Linux (deb package ksh, version 93u-1)
1094   # OTOH, at least these shells that do *not* exhibit that behaviour:
1095   #  - modern version of the Almquist Shell (at least 0.5.5.1), on
1096   #    both Solaris and GNU/Linux
1097   #  - Solaris 10 /bin/sh
1098   #  - public domain Korn Shell, version 5.2.14, on Debian GNU/Linux
1099   trap "fatal_ 'caught signal SIGQUIT'" 3
1100   # Ignore further SIGPIPE in the trap code.  This is required to avoid
1101   # a very weird issue with some shells, at least when the execution of
1102   # the automake testsuite is driven by the `prove' utility: if prove
1103   # (or the make process that has spawned it) gets interrupted with
1104   # Ctrl-C, the shell might go in a loop, continually getting a SIGPIPE,
1105   # sometimes finally dumping core, other times hanging indefinitely.
1106   # See also Test::Harness bug [rt.cpan.org #70855], archived at
1107   # <https://rt.cpan.org/Ticket/Display.html?id=70855>
1108   trap "trap '' 13; fatal_ 'caught signal SIGPIPE'" 13
1111 # Create and populate the temporary directory, if and as required.
1112 if test x"$am_create_testdir" = x"no"; then
1113   testSubDir=
1114 else
1115   # The subdirectory where the current test script will run and write its
1116   # temporary/data files.  This will be created shortly, and will be removed
1117   # by the cleanup trap below if the test passes.  If the test doesn't pass,
1118   # this directory will be kept, to facilitate debugging.
1119   testSubDir=$me.dir
1120   test ! -d $testSubDir || rm_rf_ $testSubDir \
1121     || framework_failure_ "removing old test subdirectory"
1122   mkdir $testSubDir \
1123     || framework_failure_ "creating test subdirectory"
1124   cd ./$testSubDir \
1125     || framework_failure_ "cannot chdir into test subdirectory"
1126   if test x"$am_create_testdir" != x"empty"; then
1127     cp "$am_scriptdir"/install-sh "$am_scriptdir"/missing \
1128        "$am_scriptdir"/depcomp . \
1129       || framework_failure_ "fetching common files from $am_scriptdir"
1130     # Build appropriate environment in test directory.  E.g., create
1131     # configure.in, touch all necessary files, etc.  Don't use AC_OUTPUT,
1132     # but AC_CONFIG_FILES so that appending still produces a valid
1133     # configure.in.  But then, tests running config.status really need
1134     # to append AC_OUTPUT.
1135     {
1136       echo "AC_INIT([$me], [1.0])"
1137       if test x"$am_parallel_tests" = x"yes"; then
1138         echo "AM_INIT_AUTOMAKE([parallel-tests])"
1139       else
1140         echo "AM_INIT_AUTOMAKE"
1141       fi
1142       echo "AC_CONFIG_FILES([Makefile])"
1143     } >configure.in || framework_failure_ "creating configure.in skeleton"
1144   fi
1148 ## ---------------- ##
1149 ##  Ready to go...  ##
1150 ## ---------------- ##
1152 set -x