test: protect more yacc declarations against C vs. C++ linkage.
[automake.git] / t / tap-number-wordboundary.sh
blobfb1fb5f1310c394c3e43f755373fa7dff66d93a9
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 # TAP support:
18 # - TAP result numbers terminated by a non-whitespace "word boundary"
19 # character are recognized
21 . test-init.sh
23 . tap-setup.sh
25 cat > all.test <<'END'
26 1..5
27 ok 1: foo1
28 not ok 2- foo2
29 ok 3@ foo3 # SKIP
30 not ok 4?&%$ foo4 # TODO
31 ok 5"`!! foo5 # TODO
32 END
34 run_make -O -e FAIL check
35 count_test_results total=5 pass=1 fail=1 skip=1 xpass=1 xfail=1 error=0
37 $EGREP '^PASS: all\.test 1 ?: foo1$' stdout
38 $EGREP '^FAIL: all\.test 2 ?- foo2$' stdout
39 $EGREP '^SKIP: all\.test 3 ?@ foo3 # SKIP$' stdout
40 $EGREP '^XFAIL: all\.test 4 ?\?&%\$ foo4 # TODO$' stdout
41 $EGREP '^XPASS: all\.test 5 ?"`!! foo5 # TODO$' stdout
43 cat > all.test <<'END'
44 1..3
45 ok 2: quux
46 not ok 1!
47 ok 476$ # SKIP
48 END
50 run_make -O -e FAIL check
51 count_test_results total=3 pass=0 fail=0 skip=0 xpass=0 xfail=0 error=3
53 $EGREP '^ERROR: all\.test 2 ?: quux # OUT-OF-ORDER \(expecting 1\)$' stdout
54 $EGREP '^ERROR: all\.test 1 ?! # OUT-OF-ORDER \(expecting 2\)$' stdout
55 $EGREP '^ERROR: all\.test 476 ?\$ # OUT-OF-ORDER \(expecting 3\)$' stdout
57 cat > punctuation <<'END'
89 END
91 # Strip any extra whitespace, for Solaris' wc.
92 planned=$(wc -l <punctuation | tr -d " $tab")
94 echo 1..$planned > all.test
95 awk '{print "ok " NR $0 }' punctuation >> all.test
96 # For debugging.
97 cat all.test
98 # Sanity check.
99 grep "^ok 1'$" all.test || framework_failure_ "creating all.test"
101 run_make -O check
102 count_test_results total=$planned pass=$planned \
103 fail=0 skip=0 xpass=0 xfail=0 error=0