Merge branch 'minor'
[automake.git] / t / tap-autonumber.sh
blobded62197546a3e64f16c605b727815d62093e5ef
1 #! /bin/sh
2 # Copyright (C) 2011-2017 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 <https://www.gnu.org/licenses/>.
17 # TAP support:
18 # - unnumbered tests are OK, as long as their final total number
19 # agrees with the plan
20 # - test results without number get automatically numbered in the
21 # console progress output
23 . test-init.sh
25 . tap-setup.sh
27 cat > all.test <<'END'
28 1..14
30 ok foo
31 ok - foo2
32 not ok
33 not ok bar
34 not ok - bar2
35 ; See that we can intermingle different kind of results without
36 ; messing up the autonumbering
38 ok # TODO
39 not ok # TODO who cares?
41 not ok
42 ok muuu # SKIP
43 not ok
45 END
47 run_make -O -e FAIL TESTS=all.test check
48 count_test_results total=14 pass=6 fail=5 xpass=1 xfail=1 skip=1 error=0
50 cat > exp <<'END'
51 PASS: all.test 1
52 PASS: all.test 2 foo
53 PASS: all.test 3 - foo2
54 FAIL: all.test 4
55 FAIL: all.test 5 bar
56 FAIL: all.test 6 - bar2
57 PASS: all.test 7
58 XPASS: all.test 8 # TODO
59 XFAIL: all.test 9 # TODO who cares?
60 PASS: all.test 10
61 FAIL: all.test 11
62 SKIP: all.test 12 muuu # SKIP
63 FAIL: all.test 13
64 PASS: all.test 14
65 END
67 $FGREP ': all.test' stdout > got
69 cat exp
70 cat got
71 diff exp got