doc: typos in test file.
[automake.git] / t / tap-planskip-unplanned.sh
bloba9062863383aa877fdf653f11b12108186cd6e7f
1 #! /bin/sh
2 # Copyright (C) 2011-2024 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 # - 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.
22 . test-init.sh
24 . tap-setup.sh
26 cat > all.test <<END
27 ok 1
28 1..0 # SKIP too late
29 END
30 run_make -O -e FAIL check
31 count_test_results total=2 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=1
32 grep '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
34 cat > all.test <<END
35 ok 1
36 ok 2 # SKIP
37 not ok 3 # TODO
38 1..0 # SKIP too late
39 END
40 run_make -O -e FAIL check
41 count_test_results total=4 pass=1 fail=0 xpass=0 xfail=1 skip=1 error=1
42 grep '^ERROR: all\.test - too many tests run (expected 0, got 3)$' stdout
44 cat > all.test <<END
45 1..0 # SKIP falsified later
46 ok 1
47 END
48 run_make -O -e FAIL check
49 count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=1 error=2
50 grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
51 grep '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
53 cat > all.test <<END
54 1..0 # SKIP falsified later
55 ok 1
56 ok 2 # SKIP
57 not ok 3
58 not ok 4 # TODO
59 END
60 run_make -O -e FAIL check
61 count_test_results total=6 pass=0 fail=0 xpass=0 xfail=0 skip=1 error=5
62 grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
63 grep '^ERROR: all\.test 2 # UNPLANNED$' stdout
64 grep '^ERROR: all\.test 3 # UNPLANNED$' stdout
65 grep '^ERROR: all\.test 4 # UNPLANNED$' stdout
66 grep '^ERROR: all\.test - too many tests run (expected 0, got 4)$' stdout