am-ft: make the environment available earlier
[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 run_make -O -e FAIL check
35 count_test_results total=5 pass=1 fail=1 skip=1 xpass=1 xfail=1 error=0
36
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
42
43 cat > all.test <<'END'
44 1..3
45 ok 2: quux
46 not ok 1!
47 ok 476$ # SKIP
48 END
49
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
52
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
56
57 cat > punctuation <<'END'
58 '
59 "
60 `
61 #
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 END
90
91 # Strip any extra whitespace, for Solaris' wc.
92 planned=$(wc -l <punctuation | tr -d " $tab")
93
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"
100
101 run_make -O check
102 count_test_results total=$planned pass=$planned \
103                    fail=0 skip=0 xpass=0 xfail=0 error=0
104
105 :