2 # Copyright (C) 2011-2012 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)
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/>.
18 # - TAP result numbers terminated by a non-whitespace "word boundary"
19 # character are recognized
25 cat > all.
test <<'END'
30 not ok 4?&%$ foo4 # TODO
34 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
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'
52 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
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'
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
103 grep "^ok 1'$" all.
test || framework_failure_
"creating all.test"
105 $MAKE check
>stdout ||
{ cat stdout
; exit 1; }
108 count_test_results total
=$planned pass
=$planned \
109 fail
=0 skip
=0 xpass
=0 xfail
=0 error
=0