tests: fix a failure in Lex/C++ tests on Mac OS X
[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 $SHELL -c '. ./defs-static && test $am_using_tap = yes' foo.tap
26 $SHELL -c '. ./defs-static && test $am_using_tap = no'  foo.test
27 $SHELL -c '. ./defs-static && test $am_using_tap = no'  tap
28 $SHELL -c '. ./defs-static && test $am_using_tap = no'  tap.test
29 $SHELL -c '. ./defs-static && test $am_using_tap = no'  foo-tap
30
31 $SHELL -c '
32   am_using_tap=no
33   . ./defs-static
34   test $am_using_tap = no
35 ' foo.tap
36
37 $SHELL -c '
38   am_using_tap=yes
39   . ./defs-static
40   test $am_using_tap = yes
41 ' foo.test
42
43 :