ylwrap: preserve subdirectories in "#line" munging
[platform/upstream/automake.git] / t / self-check-tap.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Sanity check for the automake testsuite.
18 # Make sure that $am_using_tap gets automatically defined by
19 # './defs-static', but can be overridden by the individual tests.
20
21 . ./defs-static || exit 1
22
23 set -ex
24
25 $AM_TEST_RUNNER_SHELL -c \
26   '. ./defs-static && test $am_using_tap = yes' foo.tap
27
28 for name in foo.test tap tap.test foo-tap; do
29   $AM_TEST_RUNNER_SHELL -c \
30     '. ./defs-static && test $am_using_tap = no' $name
31 done
32
33 $AM_TEST_RUNNER_SHELL -c '
34   am_using_tap=no
35   . ./defs-static
36   test $am_using_tap = no
37 ' foo.tap
38
39 $AM_TEST_RUNNER_SHELL -c '
40   am_using_tap=yes
41   . ./defs-static
42   test $am_using_tap = yes
43 ' foo.test
44
45 :