test: protect more yacc declarations against C vs. C++ linkage.
[automake.git] / t / check-tests-in-builddir.sh
blobc11378d7754328a2681438f3b75e8b6c4a3fbcc5
1 #! /bin/sh
2 # Copyright (C) 2011-2024 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 <https://www.gnu.org/licenses/>.
17 # Check that the testsuite driver can find test in the srcdir as
18 # well as in builddir, and that is prefers those in the builddir.
20 # For gen-testsuite-part: ==> try-with-serial-tests <==
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_OUTPUT
25 END
27 cat > Makefile.am << 'END'
28 TESTS = foo.test bar.test
29 EXTRA_DIST = $(TESTS)
30 END
32 cat > foo.test << 'END'
33 #! /bin/sh
34 exit ${FOO_EXIT_STATUS-0}
35 END
36 chmod a+x foo.test
38 unset FOO_EXIT_STATUS
40 $ACLOCAL
41 $AUTOCONF
42 $AUTOMAKE -a
44 mkdir build
45 cd build
47 ../configure
49 cat > bar.test << 'END'
50 #! /bin/sh
51 exit 0
52 END
53 chmod a+x bar.test
55 run_make -M check
56 # The serial test driver does not strip VPATH components from
57 # the name of the test, but the parallel driver should.
58 if test x"$am_serial_tests" = x"yes"; then
59 grep '^PASS: .*foo\.test *$' output
60 else
61 grep '\.\./foo' output && exit 1
62 grep '^PASS: foo\.test *$' output
64 grep '^PASS: bar\.test *$' output
66 rm -f test-suite.log foo.log bar.log
68 run_make -M -e FAIL FOO_EXIT_STATUS=1 check
69 # The serial test driver does not strip VPATH components from
70 # the name of the test, but the parallel driver should.
71 if test x"$am_serial_tests" = x"yes"; then
72 grep '^FAIL: .*foo\.test *$' output
73 else
74 grep '\.\./foo' output && exit 1
75 grep '^FAIL: foo\.test *$' output
77 grep '^PASS: bar\.test *$' output
79 rm -f test-suite.log foo.log bar.log
81 # Check that if the same test is present in srcdir and builddir,
82 # the one in builddir is preferred.
83 cp bar.test foo.test
84 run_make -M FOO_EXIT_STATUS=1 check
85 grep '^PASS: foo\.test *$' output
86 grep '^PASS: bar\.test *$' output
88 # The tests in the builddir must be preferred also by "make dist".
89 FOO_EXIT_STATUS=1 $MAKE distcheck