tests: remove recipes that run tests with 'prove'
[platform/upstream/automake.git] / t / tap-msg0-misc.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2012 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 #  - literal "0" and "0.0" in a test description and a TODO/SKIP message
19 #    at the same time
20
21 am_parallel_tests=yes
22 . ./defs || Exit 1
23
24 . "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
25
26 cat > all.test << 'END'
27 1..14
28
29 ok 1 0
30 ok 2 0.0
31
32 ok 3 0   # TODO 0
33 ok 4 0.0 # TODO 0
34 ok 5 0   # TODO 0.0
35 ok 6 0.0 # TODO 0.0
36
37 not ok 7 0   # TODO 0
38 not ok 8 0.0 # TODO 0
39 not ok 9 0   # TODO 0.0
40 not ok 10 0.0 # TODO 0.0
41
42 ok 11 0   # SKIP 0
43 ok 12 0.0 # SKIP 0
44 ok 13 0   # SKIP 0.0
45 ok 14 0.0 # SKIP 0.0
46
47 END
48
49 $MAKE check >stdout && { cat stdout; Exit 1; }
50 cat stdout
51
52 count_test_results total=14 pass=2 fail=0 xpass=4 xfail=4 skip=4 error=0
53
54 sed '/^ *$/d' > exp << 'END'
55
56 PASS: all.test 1 0
57 PASS: all.test 2 0.0
58
59 XPASS: all.test 3 0 # TODO 0
60 XPASS: all.test 4 0.0 # TODO 0
61 XPASS: all.test 5 0 # TODO 0.0
62 XPASS: all.test 6 0.0 # TODO 0.0
63
64 XFAIL: all.test 7 0 # TODO 0
65 XFAIL: all.test 8 0.0 # TODO 0
66 XFAIL: all.test 9 0 # TODO 0.0
67 XFAIL: all.test 10 0.0 # TODO 0.0
68
69 SKIP: all.test 11 0 # SKIP 0
70 SKIP: all.test 12 0.0 # SKIP 0
71 SKIP: all.test 13 0 # SKIP 0.0
72 SKIP: all.test 14 0.0 # SKIP 0.0
73
74 END
75
76 $FGREP ': all.test' stdout > got
77
78 cat exp
79 cat got
80 diff exp got
81
82 :