tests: work around strangeness in MSYS
[automake.git] / tests / self-check-tap.test
blob29350efa4f7b4730dc78ffc0d0f729d4df35edce
1 #! /bin/sh
2 # Copyright (C) 2011 Free Software Foundation, Inc.
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.
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.
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/>.
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.
21 . ./defs-static || exit 1
23 set -ex
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
31 $SHELL -c '
32 am_using_tap=no
33 . ./defs-static
34 test $am_using_tap = no
35 ' foo.tap
37 $SHELL -c '
38 am_using_tap=yes
39 . ./defs-static
40 test $am_using_tap = yes
41 ' foo.test