test: protect more yacc declarations against C vs. C++ linkage.
[automake.git] / t / parallel-tests-log-override-2.sh
blob77a6c9e4b6f4c30e6f26af6a07c56a3fd542771f
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 parallel-tests features: runtime redefinition of:
18 # - $(TEST_SUITE_LOG) and $(TESTS)
19 # - $(TEST_SUITE_LOG) and $(TEST_LOGS)
21 . test-init.sh
23 cat >> configure.ac <<'END'
24 AC_OUTPUT
25 END
27 cat > Makefile.am <<'END'
28 TESTS = pass.test pass2.test skip.test skip2.test fail.test
29 END
31 cat > pass.test <<'END'
32 #! /bin/sh
33 exit 0
34 END
36 cp pass.test pass2.test
38 cat > skip.test <<'END'
39 #! /bin/sh
40 echo "% skipped test %"
41 exit 77
42 END
44 cp skip.test skip2.test
46 cat > fail.test <<'END'
47 #! /bin/sh
48 exit 1
49 END
51 chmod a+x *.test
53 $ACLOCAL
54 $AUTOCONF
55 $AUTOMAKE -a
57 ./configure
59 for test_list_override in \
60 'TESTS=pass.test skip.test' \
61 'TEST_LOGS=pass.log skip.log'
63 run_make -O TEST_SUITE_LOG=partial.log "$test_list_override" check
64 ls -l
65 count_test_results total=2 pass=1 fail=0 skip=1 xfail=0 xpass=0 error=0
66 cat pass.log
67 cat skip.log
68 cat partial.log
69 test ! -e test-suite.log
70 test ! -e pass2.log
71 test ! -e skip2.log
72 test ! -e fail.log
73 grep '^PASS: pass\.test$' stdout
74 grep '^SKIP: skip\.test$' stdout
75 $FGREP 'SKIP: skip' partial.log
76 $FGREP '% skipped test %' partial.log
77 $EGREP '(pass2|skip2|fail)\.test' stdout && exit 1
78 $EGREP '(pass2|skip2|fail)' partial.log && exit 1
79 rm -f *.log
80 done