style: add trailing ':' to some test cases
[automake.git] / t / tap-number-wordboundary.sh
bloba8e9f1c49c72c95ab0e25f32b585e442869152f1
1 #! /bin/sh
2 # Copyright (C) 2011-2013 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 # 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 $MAKE check >stdout && { cat stdout; exit 1; }
35 cat stdout
37 count_test_results total=5 pass=1 fail=1 skip=1 xpass=1 xfail=1 error=0
39 $EGREP '^PASS: all\.test 1 ?: foo1$' stdout
40 $EGREP '^FAIL: all\.test 2 ?- foo2$' stdout
41 $EGREP '^SKIP: all\.test 3 ?@ foo3 # SKIP$' stdout
42 $EGREP '^XFAIL: all\.test 4 ?\?&%\$ foo4 # TODO$' stdout
43 $EGREP '^XPASS: all\.test 5 ?"`!! foo5 # TODO$' stdout
45 cat > all.test <<'END'
46 1..3
47 ok 2: quux
48 not ok 1!
49 ok 476$ # SKIP
50 END
52 $MAKE check >stdout && { cat stdout; exit 1; }
53 cat stdout
55 count_test_results total=3 pass=0 fail=0 skip=0 xpass=0 xfail=0 error=3
57 $EGREP '^ERROR: all\.test 2 ?: quux # OUT-OF-ORDER \(expecting 1\)$' stdout
58 $EGREP '^ERROR: all\.test 1 ?! # OUT-OF-ORDER \(expecting 2\)$' stdout
59 $EGREP '^ERROR: all\.test 476 ?\$ # OUT-OF-ORDER \(expecting 3\)$' stdout
61 cat > punctuation <<'END'
93 END
95 # Strip any extra whitespace, for Solaris' wc.
96 planned=$(wc -l <punctuation | tr -d " $tab")
98 echo 1..$planned > all.test
99 awk '{print "ok " NR $0 }' punctuation >> all.test
100 # For debugging.
101 cat all.test
102 # Sanity check.
103 grep "^ok 1'$" all.test || framework_failure_ "creating all.test"
105 $MAKE check >stdout || { cat stdout; exit 1; }
106 cat stdout
108 count_test_results total=$planned pass=$planned \
109 fail=0 skip=0 xpass=0 xfail=0 error=0