Merge branch 'fix-pr13588-pax-hangs' into branch-1.13.2
[automake.git] / t / tap-msg0-misc.sh
blobe1f48a9451dc7bc6670ce8dc853d413387d1e9a5
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 # - literal "0" and "0.0" in a test description and a TODO/SKIP message
19 # at the same time
21 . test-init.sh
23 . tap-setup.sh
25 cat > all.test << 'END'
26 1..14
28 ok 1 0
29 ok 2 0.0
31 ok 3 0 # TODO 0
32 ok 4 0.0 # TODO 0
33 ok 5 0 # TODO 0.0
34 ok 6 0.0 # TODO 0.0
36 not ok 7 0 # TODO 0
37 not ok 8 0.0 # TODO 0
38 not ok 9 0 # TODO 0.0
39 not ok 10 0.0 # TODO 0.0
41 ok 11 0 # SKIP 0
42 ok 12 0.0 # SKIP 0
43 ok 13 0 # SKIP 0.0
44 ok 14 0.0 # SKIP 0.0
46 END
48 $MAKE check >stdout && { cat stdout; exit 1; }
49 cat stdout
51 count_test_results total=14 pass=2 fail=0 xpass=4 xfail=4 skip=4 error=0
53 sed '/^ *$/d' > exp << 'END'
55 PASS: all.test 1 0
56 PASS: all.test 2 0.0
58 XPASS: all.test 3 0 # TODO 0
59 XPASS: all.test 4 0.0 # TODO 0
60 XPASS: all.test 5 0 # TODO 0.0
61 XPASS: all.test 6 0.0 # TODO 0.0
63 XFAIL: all.test 7 0 # TODO 0
64 XFAIL: all.test 8 0.0 # TODO 0
65 XFAIL: all.test 9 0 # TODO 0.0
66 XFAIL: all.test 10 0.0 # TODO 0.0
68 SKIP: all.test 11 0 # SKIP 0
69 SKIP: all.test 12 0.0 # SKIP 0
70 SKIP: all.test 13 0 # SKIP 0.0
71 SKIP: all.test 14 0.0 # SKIP 0.0
73 END
75 $FGREP ': all.test' stdout > got
77 cat exp
78 cat got
79 diff exp got