Merge branch 'micro' into maint
[platform/upstream/automake.git] / t / tap-number-wordboundary.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2013 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 # TAP support:
18 #  - TAP result numbers terminated by a non-whitespace "word boundary"
19 #    character are recognized
20
21 . test-init.sh
22
23 . tap-setup.sh
24
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
33
34 $MAKE check >stdout && { cat stdout; exit 1; }
35 cat stdout
36
37 count_test_results total=5 pass=1 fail=1 skip=1 xpass=1 xfail=1 error=0
38
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
44
45 cat > all.test <<'END'
46 1..3
47 ok 2: quux
48 not ok 1!
49 ok 476$ # SKIP
50 END
51
52 $MAKE check >stdout && { cat stdout; exit 1; }
53 cat stdout
54
55 count_test_results total=3 pass=0 fail=0 skip=0 xpass=0 xfail=0 error=3
56
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
60
61 cat > punctuation <<'END'
62 '
63 "
64 `
65 #
66 $
67 !
68 \
69 /
70 &
71 %
72 (
73 )
74 |
75 ^
76 ~
77 ?
78 *
79 +
80 -
81 ,
82 :
83 ;
84 =
85 <
86 >
87 @
88 [
89 ]
90 {
91 }
92 \
93 END
94
95 # Strip any extra whitespace, for Solaris' wc.
96 planned=$(wc -l <punctuation | tr -d " $tab")
97
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"
104
105 $MAKE check >stdout || { cat stdout; exit 1; }
106 cat stdout
107
108 count_test_results total=$planned pass=$planned \
109                    fail=0 skip=0 xpass=0 xfail=0 error=0
110
111 :