tests: "am_using_tap=yes" -> "am_test_protocol=tap"
[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_test_protocol' gets automatically defined by
19 # 'test-defs.sh', but can be overridden by the individual tests.
20
21 . test-defs.sh
22
23 set -ex
24
25 $AM_TEST_RUNNER_SHELL -c \
26   ". test-defs.sh && test \$am_test_protocol = tap" foo.tap
27
28 for name in foo.test tap tap.test foo-tap; do
29   $AM_TEST_RUNNER_SHELL -c \
30     ". test-defs.sh && test \$am_test_protocol = none" $name
31 done
32
33 $AM_TEST_RUNNER_SHELL -c "
34   am_test_protocol=none
35   . test-defs.sh
36   test \$am_test_protocol = none
37 " foo.tap
38
39 $AM_TEST_RUNNER_SHELL -c "
40   am_test_protocol=tap
41   . test-defs.sh
42   test \$am_test_protocol = tap
43 " foo.test
44
45 :