Merge branch 'micro' into maint
[platform/upstream/automake.git] / t / tap-planskip-unplanned.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 #  - a "plan with skip" given after one or more test result have already
19 #    been seen is an error
20 #  - any test result following a "plan with skip" is an error.
21
22 . test-init.sh
23
24 . tap-setup.sh
25
26 cat > all.test <<END
27 ok 1
28 1..0 # SKIP too late
29 END
30 $MAKE check >stdout && { cat stdout; exit 1; }
31 cat stdout
32 count_test_results total=2 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=1
33 grep '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
34
35 cat > all.test <<END
36 ok 1
37 ok 2 # SKIP
38 not ok 3 # TODO
39 1..0 # SKIP too late
40 END
41 $MAKE check >stdout && { cat stdout; exit 1; }
42 cat stdout
43 count_test_results total=4 pass=1 fail=0 xpass=0 xfail=1 skip=1 error=1
44 grep '^ERROR: all\.test - too many tests run (expected 0, got 3)$' stdout
45
46 cat > all.test <<END
47 1..0 # SKIP falsified later
48 ok 1
49 END
50 $MAKE check >stdout && { cat stdout; exit 1; }
51 cat stdout
52 count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=1 error=2
53 grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
54 grep '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
55
56 cat > all.test <<END
57 1..0 # SKIP falsified later
58 ok 1
59 ok 2 # SKIP
60 not ok 3
61 not ok 4 # TODO
62 END
63 $MAKE check >stdout && { cat stdout; exit 1; }
64 cat stdout
65 count_test_results total=6 pass=0 fail=0 xpass=0 xfail=0 skip=1 error=5
66 grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
67 grep '^ERROR: all\.test 2 # UNPLANNED$' stdout
68 grep '^ERROR: all\.test 3 # UNPLANNED$' stdout
69 grep '^ERROR: all\.test 4 # UNPLANNED$' stdout
70 grep '^ERROR: all\.test - too many tests run (expected 0, got 4)$' stdout
71
72 :